BZOJ 1000: A+B Problem
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 1000: A+B Problem相关的知识,希望对你有一定的参考价值。
问题: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的主要内容,如果未能解决你的问题,请参考以下文章