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