| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141569 | 孔声豪 | 12输出3的倍数 | C++ | Compile Error | 0 MS | 0 KB | 140 | 2025-12-27 12:14:38 |
#include <iostream> using namespace std; int main() { int a; for(a=1;a<=100;a++){ if(a%3==0){ cout<<a<<endl; } return 0; }
Main.cc: In function 'int main()': Main.cc:11:2: error: expected '}' at end of input } ^