A+B Problem
Time Limit:1000MS Memory Limit:65536K
Total Submit:308 Accepted:181
Description
A+B Problem 水题水题, 没有最水,只有更水。
Input
连续输入两个整数 a、 b,当a=0且b=0时结束输入
Output
输出a+b的值,并换行。
Sample Input
1 2 0 0
Sample Output
3
Source
XiaoZhou
#include<stdio.h> main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF&&a||b) { printf("%d\n",a+b); } }
转载请注明出处,谢谢.Q_Q

浙公网安备 33010602011771号