Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
142865 张晓冉 A+B 输入输出练习II C++ Compile Error 0 MS 0 KB 341 2026-01-11 16:42:13

Tests(0/0):


Code:

#include<iostream> using namespace std; int main() { int N; cin>>N; int a,b; int s = 0; int d = 0; for(int i = 0;i <= N;i++){ cin>>a>>b; if(i == 1){ s = a+b; cout<<s; }else if(i == 2){ d = a+ b; cout<<d; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:20:1: error: expected '}' at end of input
 }
 ^