A+B 投入产出实践(三)你的任务是计算 a + b。你的任务是计算 a + b。输入输入包含多个测试用例。每个测试用例包含一对整数 a 和 b,每行一对整数。包含 0 0 的测试用例会终止输入,

A+B 投入产出实践(三)你的任务是计算 a + b。你的任务是计算 a + b。输入输入包含多个测试用例。每个测试用例包含一对整数 a 和 b,每行一对整数。包含 0 0 的测试用例会终止输入,

 

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        // TODO Auto-generated method stub
    Scanner sc=new Scanner(System.in);
    int  a ,b;
    while(sc.hasNext()) {
        
        
            
                a=sc.nextInt();
                b=sc.nextInt();
                if(a==0&&b==0) {
                    break;
                }
                else {
                System.out.println(a+b);
                }
        
    }
}
}

上一篇:使用简单运算进行登录验证


下一篇:java基础-API