标签:
求整数a,b的和。
测试案例有多行,每行为a,b的值。
输出多行,对应a+b的结果。
1 2 4 5 6 9
3 9 15
做这题只是想看一下输入是否会符合提交的格式;
1 import java.util.Scanner; 2 3 public class Main{ 4 public static void main(String[] args){ 5 Scanner in=new Scanner(System.in); 6 while(in.hasNext()){ 7 int a=in.nextInt(); 8 int b=in.nextInt(); 9 System.out.println(a+b); 10 in.nextLine(); 11 } 12 } 13 } 14 /************************************************************** 15 Problem: 1000 16 User: 0000H 17 Language: Java 18 Result: Accepted 19 Time:90 ms 20 Memory:15468 kb 21 ****************************************************************/
标签:
原文地址:http://www.cnblogs.com/qq1029579233/p/4418067.html