| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 119097 | 罗睿妍 | 11下一次奥运会 | C++ | Compile Error | 0 MS | 0 KB | 204 | 2025-05-15 17:52:58 | 
#include <iostream> using namespace std; int main() { int y; if{ y%4==0; cout<<"0"<<endl; else cout<<y%4<<endl; } return 0; }
Main.cc: In function 'int main()':
Main.cc:6:7: error: expected '(' before '{' token
     if{
       ^
Main.cc:5:9: warning: unused variable 'y' [-Wunused-variable]
     int y;
         ^