Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102284 | 陈海林 | A+B 输入输出练习I | C++ | Compile Error | 0 MS | 0 KB | 160 | 2024-12-21 14:42:59 |
#include<iostream> using namespace std; int main() { int a,b,a1,b1; cin>>a>>b;endl cin>>a1>>b1; cout<<a+b<<endl<<a1+b1; return 0; }
Main.cc: In function 'int main()': Main.cc:7:5: error: expected ';' before 'cin' cin>>a1>>b1; ^ Main.cc:7:16: error: statement cannot resolve address of overloaded function cin>>a1>>b1; ^