题解 | 多组_A+B_T组形式
多组_A+B_T组形式
https://www.nowcoder.com/practice/cc937d32225340469bfb60a0797bad77
#include <iostream>
using namespace std;
int main() {
int n = 0;
cin>>n;
for(int i = 0;i<n;i++){
int a,b;
cin>> a>>b;
cout<<a+b<<endl;
}
return 0;
}
// 64 位输出请用 printf("%lld")
查看9道真题和解析