| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149548 | 向运淇 | 消消乐 | C++ | Compile Error | 0 MS | 0 KB | 199 | 2026-03-14 11:19:32 |
#include <iostream> using namespace std; int main(){ int ge,shi,bai,i; for(i=100;i<100;i++){ bai=i/100; shi=(i/10)%10; ge=i%10; if(bai==shi&&shi==ge) cout<<i<<endl; return 0; }
Main.cc: In function 'int main()': Main.cc:12:1: error: expected '}' at end of input } ^