Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136331 李亭绪 14马里奥吃蘑菇 C++ Compile Error 0 MS 0 KB 204 2025-11-12 18:50:26

Tests(0/0):


Code:

#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<<" "; } }


Run Info:

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;
      ^