| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128828 | 王晏林 | 11下一次奥运会 | C++ | Compile Error | 0 MS | 0 KB | 113 | 2025-08-20 11:20:54 |
#include<iostream> using namespace std; int main(){ int n cin>>n; cout<<4-n%4; return 0; }
Main.cc: In function 'int main()':
Main.cc:5:5: error: expected initializer before 'cin'
cin>>n;
^
Main.cc:6:13: error: 'n' was not declared in this scope
cout<<4-n%4;
^