Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150143 余建成 14报数拿糖 C++ Compile Error 0 MS 0 KB 221 2026-03-22 12:15:29

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int n=0; for(int i=1;i<=100;i++) { n++; if(n==11)n=1; if(i%3=!=0)coutinue; cout<<n<< } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:10:16: error: expected primary-expression before '!=' token
         if(i%3=!=0)coutinue;
                ^
Main.cc:10:20: error: 'coutinue' was not declared in this scope
         if(i%3=!=0)coutinue;
                    ^
Main.cc:12:5: error: expected primary-expression before '}' token
     }
     ^