| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141825 | 陈峻徳 | 02数字拼接 | C++ | Compile Error | 0 MS | 0 KB | 156 | 2025-12-28 15:20:02 |
#include<iostream> using namespace std; int main(){ long long a,b; cin>>a>>b>>; cout<<a*10+b<<endl; cout<<(a*10+b)*(a*10+b)<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:5:13: error: expected primary-expression before ';' token
cin>>a>>b>>;
^