| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128688 | 周民苡 | 满足条件四位数的个数 | C++ | Compile Error | 0 MS | 0 KB | 257 | 2025-08-19 12:15:53 |
#include<iostream> using namespace std; int main(){ int n,b=0,v; cin>>n; for(int i=0;i<=n;i++){ cin>>v; if((v%10)>(v/1000+(v/100)%10+(v/10)%10)) { b++ } } cout<<b; return 0; }
Main.cc: In function 'int main()':
Main.cc:11:9: error: expected ';' before '}' token
}
^