| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152995 | 张皓凯 | 02数字拼接 | C++ | Compile Error | 0 MS | 0 KB | 184 | 2026-05-08 20:26:33 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; sering c=sering(a)+sering(b); int n=int(c); cout<<n*n<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:7:5: error: 'sering' was not declared in this scope
sering c=sering(a)+sering(b);
^
Main.cc:8:15: error: 'c' was not declared in this scope
int n=int(c);
^