| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146731 | 李沐阳 | 02数字拼接 | C++ | Compile Error | 0 MS | 0 KB | 123 | 2026-01-30 09:59:12 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b cout<<(10*a+b)*(10*a+b); return 0; }
Main.cc: In function 'int main()': Main.cc:7:2: error: expected ';' before 'cout' cout<<(10*a+b)*(10*a+b); ^