Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99103 | 李嘉安 | A+B 输入输出练习I | C++ | Compile Error | 0 MS | 0 KB | 158 | 2024-11-24 13:13:25 |
include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; cout<<a+b<<endl; cout<<c+d<<endl; return 0; }
Main.cc:1:1: error: 'include' does not name a type include ^ Main.cc: In function 'int main()': Main.cc:5:5: error: 'cin' was not declared in this scope cin>>a>>b>>c>>d; ^ Main.cc:6:5: error: 'cout' was not declared in this scope cout<