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