| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 116934 | 向睿杰 | 12for循环练习III | C++ | Compile Error | 0 MS | 0 KB | 212 | 2025-04-12 19:25:31 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int i; for(i=1;i<=100;i++){ if(i%2==1){ cout<<i<<" "; } }
Main.cc: In function 'int main()':
Main.cc:10:5: error: expected '}' at end of input
}
^