| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152994 | 张皓凯 | 02数字拼接 | C++ | Compile Error | 0 MS | 0 KB | 138 | 2026-05-08 20:09:49 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<(a+b*10)**2<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:7:21: error: invalid type argument of unary '*' (have 'int')
cout<<(a+b*10)**2<