Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109589 | 郑景文 | 02数字拼接 | C++ | Compile Error | 0 MS | 0 KB | 133 | 2025-02-09 15:39:12 |
#include<iostream> using namespace std; long long main(){ long long a,b; cin>>a>>b; cout<<(a*10+b)*(a*10+b); return 0; }
Main.cc:3:16: error: '::main' must return 'int' long long main(){ ^