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