标签:std ios 任务 end mes output stream int 换行符
你的任务是计算a+b。Input
输入由一系列成对的由空格分割的整数a和b构成,一对输入占用一行。
Output
对于每组输入,要求在一行输出它们的和。并且你要保证每组输出之间有一空行。
Sample Input
1 5 10 20
Sample Output
6 30
#include<iostream>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)
{
cout<<a+b<<endl<<endl;
}
}
注意一下需要两个换行符就行了了
标签:std ios 任务 end mes output stream int 换行符
原文地址:https://www.cnblogs.com/heroin1/p/12244751.html