| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150128 | 孔声豪 | 14马里奥吃蘑菇 | C++ | Compile Error | 0 MS | 0 KB | 180 | 2026-03-22 11:53:52 |
#include<bits/stdc++.h> using namespace std; int main(){ for(int i=1;i<=100;i++){ if(i%3!=0){ cout<<i<<endl; continue; } } } return 0; }
Main.cc:11:4: error: expected unqualified-id before 'return'
return 0;
^
Main.cc:12:1: error: expected declaration before '}' token
}
^