Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
110325 | 胡玄善 | 02数字拼接 | C++ | Compile Error | 0 MS | 0 KB | 143 | 2025-02-16 19:32:23 |
#ioclue<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b; c=a*10+b; cout<<c*c<<endl; return 0; }
Main.cc:1:2: error: invalid preprocessing directive #ioclue #ioclue ^ Main.cc: In function 'int main()': Main.cc:5:5: error: 'cin' was not declared in this scope cin>>a>>b; ^ Main.cc:7:5: error: 'cout' was not declared in this scope cout<