| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147621 | 张晓冉 | 收集瓶盖赢大奖 | C++ | Compile Error | 0 MS | 0 KB | 263 | 2026-02-06 15:04:34 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a,b,c,d; cin>>a>>b>>c>>d; if(a >= 10 || b >= 20){ cout<<"True"; }else if(c >= 10 || d >= 20){ cout<<"True"; }else{ cout<<"False" } }
Main.cc: In function 'int main()':
Main.cc:14:5: error: expected ';' before '}' token
}
^