Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117060 | 谢佳辰 | 14报数拿糖 | C++ | Compile Error | 0 MS | 0 KB | 249 | 2025-04-13 14:57:39 |
#include <iostream> using namespace std; int main(){ int i,n=0; for(i=1;1<=100;i++){ n++; if(n==11){ n=1; } if(i%3!=0){ continue;} cout<<n<<endl; } return 0;
Main.cc: In function 'int main()': Main.cc:15:13: error: expected '}' at end of input return 0; ^