A+B for Input-Output Practice (VII)

微笑、不失礼 提交于 2020-03-17 06:28:28

Problem
DescriptionYour task is to Calculate a + b.

Input
The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.
Output
For each pair of input integers a and b you should output the sum of a and b, and followed by a blank line.
Sample Input
1 5
10 20

Sample Output
6

30
代码;

#include<stdio.h>
int main()
{
	 int a,b;
	 while(scanf("%d %d",&a,&b)!=EOF)
 	{
 		 printf("%d\n",a+b);
 		 printf("\n");
	 }
	 return 0;
 } 
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!