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

BZOJ 1000: A+B Problem

时间:2016-01-27 12:22:39      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

问题:A + B问题

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

代码示例:

import java.util.Scanner;

public class Main {

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

}

 

BZOJ 1000: A+B Problem

标签:

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

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