| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150123 | 孔声豪 | 14马里奥吃蘑菇 | C++ | Compile Error | 0 MS | 0 KB | 244 | 2026-03-22 11:52:32 |
#include<bits/stdc++.h> using namespace std; int main(){ for(int i=1;i<=100;i++){ if(i%3!=0){ cout<<i<<endl; coutinue; } else{ cout<<"陷阱"<<endl; coutinue; } } return 0; }
Main.cc: In function 'int main()':
Main.cc:7:6: error: 'coutinue' was not declared in this scope
coutinue;
^
Main.cc:11:11: error: 'coutinue' was not declared in this scope
coutinue;
^