| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151906 | 孔声豪 | 18成绩查找 | C++ | Compile Error | 0 MS | 0 KB | 206 | 2026-04-19 12:00:40 |
#include <bits/stdc++.h> using namespace std; int main(){ int m,n,a[10001]={ }; cin>>m; for(int i=0;i<m;i++){ cin>>a[i]; } cin>>n; for(int i=0;i<m;i++){ if(a[i]>100){ a[i]=n; } return 0; }
Main.cc: In function 'int main()': Main.cc:15:1: error: expected '}' at end of input } ^