目录
计算A+B
输入数据有多组。
每组一行,为两个整数A, B。输入0 0表示输入结束,该组输入不用处理。
对每行输入,输出A+B的值,单独占一行。
1 2 0 0
3
输入0 0结束,本题可以在循环条件中读取键盘输入并同时进行判断:
while(scanf("%d%d",&a,&b), a!=0||b!=0)
printf("%d\n",a+b);
- import java.util.*;
-
- public class Main {
- public static void main(String[] args) {
- Scanner sc = new Scanner(System.in);
-
- while(true) {
- int a = sc.nextInt(), b = sc.nextInt();
- if (a == 0 && b == 0) break;
- System.out.println(a+b);
- }
- }
- }