Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118400 | 马珺宇 | 输出满足条件的成绩 | C++ | Compile Error | 0 MS | 0 KB | 297 | 2025-04-29 19:06:50 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[10001]={},b[10001]={}; for(int i=1;i<=50;i++){ cin>>a[i]; cin>>b[i]; } for(int i=1;i<=50;i++){ if(b[i]>=80){ cout<<a[i]<<" "<<b[i]<<endl; } } return 0;
Main.cc: In function 'int main()': Main.cc:14:13: error: expected '}' at end of input return 0; ^