Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143811 c13 A+B 输入输出练习II C++ Compile Error 0 MS 0 KB 187 2026-01-17 20:04:25

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; int n; cin>>n; for(int i=1;i<=n;i++){ cin>>a>>b cout<<a+b<<endl; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:9:5: error: expected ';' before 'cout'
     cout<