您的位置:首页 > 其它

Hdoj 1000 A + B Problem

2017-12-13 21:07 253 查看

Hdoj 1000 A + B Problem



没什么好说的,注意多组数据的处理就好了

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cctype>
#include<cstring>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)
{
cout<<a+b<<endl;
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: