| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 135952 | 张咏灏 | 输出不及格学生的成绩 | C++ | Compile Error | 0 MS | 0 KB | 280 | 2025-11-08 17:48:59 |
# include<bits/stdc++.h> using namespace std; int main(){ int a[4],b[4],c[4]; for(int i=0;i<4;i++){ cin>>a[i]; cin>>b[i]; cin>>c[i]; } for(int i=0;i<4;i++){ if(a[i]<60){ cout<<a[i]<<" "<<a[i+1]<<" "<<a[i+2]<<" "<<a[i+3]<<endl; } } return 0;
Main.cc: In function 'int main()':
Main.cc:15:12: error: expected '}' at end of input
return 0;
^