码迷,mamicode.com
首页 > 其他好文 > 详细

1002: A+B for Input-Output Practice (II)

时间:2016-01-27 14:28:35      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

问题描述:

http://acm.wust.edu.cn/problem.php?id=1002&soj=0

代码实现:

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int a, b, n;
        n = scan.nextInt();
        while(n-- != 0){
            a = scan.nextInt();
            b = scan.nextInt();
            System.out.println(a + b);
        }
    }
}

 

1002: A+B for Input-Output Practice (II)

标签:

原文地址:http://www.cnblogs.com/yeahwell/p/5163004.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!