| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136331 | 李亭绪 | 14马里奥吃蘑菇 | C++ | Compile Error | 0 MS | 0 KB | 204 | 2025-11-12 18:50:26 |
#include <iostream> #include <cmath> #include <cstdio> using namespace std; int main() { int a; for(int i;i<=100;i++) { if(i%3==0) { continue } cout<<i<<" "; } }
Main.cc: In function 'int main()':
Main.cc:13:3: error: expected ';' before '}' token
}
^
Main.cc:7:6: warning: unused variable 'a' [-Wunused-variable]
int a;
^