Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
109586 范恒恺 02数字拼接 C++ Compile Error 0 MS 0 KB 133 2025-02-09 15:33:26

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ iong iong a,b; cin>>a; cin>>b; cout<<(10*a+b)*(10*a+b); return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:4:1: error: 'iong' was not declared in this scope
 iong iong a,b;
 ^
Main.cc:5:6: error: 'a' was not declared in this scope
 cin>>a;
      ^
Main.cc:6:6: error: 'b' was not declared in this scope
 cin>>b;
      ^