广药番茄在哪呢


私信TA

用户名:qingshuidoufu

访问量:7673

签 名:

qingshuidoufu

等  级
排  名 5328
经  验 1477
参赛次数 0
文章发表 18
年  龄 0
在职情况 学生
学  校 广东药科大学
专  业

  自我简介:

解题思路:            c++训练,注意要多输出一个空行

                         

注意事项:

参考代码:

/*Your task is to Calculate a + b.
输入
The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.
输出
For each pair of input integers a and b you should output the sum of a and b, and followed by a blank line.
样例输入
1 5
10 20
样例输出
6

30

*/
#include <iostream>
using namespace std;
int main ()
{	
int a,b;
	while (cin>>a>>b){
	cout<<a+b<<endl;				//结果一个换行
	cout<<endl;						//还要空一行
}									
return 0;
}


 

0.0分

2 人评分

  评论区