| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147437 | 孔声豪 | 神秘数字 | C++ | Compile Error | 0 MS | 0 KB | 193 | 2026-02-05 11:05:58 |
#include <iostream> using namespace std; int main(){ int a,b; cin>>a; b=a; while(b%3==2&&b%5==3&&b%7==2){ cout<<b<<endl; break; } b++ return 0; }
Main.cc: In function 'int main()':
Main.cc:12:5: error: expected ';' before 'return'
return 0;
^