Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
38289 | yuzhengxun | 与指定数字相同的数的个数 | C++ | 编译错误 | 0 MS | 0 KB | 173 | 2024-01-26 14:31:52 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n; for(int i=1;i<=n;i++){ if(i==m){ cout<<i; } } cout<<i<<" "; return 0; }