Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
10928 | jiangzhenyu 一个学霸 | 数字组合 | C++ | 通过 | 100 | 0 MS | 704 KB | 366 | 2021-02-21 13:33:04 |
#include <iostream>//首先定义变量,再运用for循环组织搭配 using namespace std; int main() { int n,g,s,b,c=0;//定义变量 cin>>n;//输入 for(int i=103; i<=n*100+(n-1)*10+n-2; i+=2)//for循环 { g=i%10; s=i/10%10; b=i/100; if(g!=s&&s!=b&&g!=b&&g<=n&&s<=n&&b<=n) { c++; } } cout<<c;//for循环 return 0; }