Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
106660 陈治宸 14马里奥吃蘑菇 C++ Compile Error 0 MS 0 KB 163 2025-01-16 14:40:41

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int i; for(i=1;i<=100;i++){ if(i%3==0) continue; cout<<i<<endl; } return


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:1: error: expected primary-expression at end of input
 return
 ^
Main.cc:13:1: error: expected ';' at end of input
Main.cc:13:1: error: expected '}' at end of input