A+B Problem (III) : Input/Output Practice

来源:互联网 发布:淘宝母婴店名字 编辑:程序博客网 时间:2024/05/17 23:49

A+B Problem (III) : Input/Output Practice

Time Limit: 1 Sec  Memory Limit:2 MB
Submit: 7729  Solved: 4981
[Submit][Status][Web Board]

Description

计算a+b,0<=a,b<1000。

Input

输入有多对整数a和b组成,每对a和b占一行,a,b用空格分开。当测试样为0 0时表示输入结束,0 0不参与运算。

Output

每行输出一个a+b的值,顺序与输入对应。

Sample Input

1 2 10 20 0 0

Sample Output

3 30

HINT

练习break的使用。

Append Code


代码:

#include<stdio.h>int main(){    int a,b;    while(~scanf("%d%d",&a,&b))    {        if(a==0&&b==0)            break;        printf("%d\n",a+b);    }}


原创粉丝点击