摘要: 昨天开始看书的,所以找个最简单的AC下。代码:import java.util.*;// public class abpublic class Main{ public static void main(String[] args) { Scanner sc = new Scanner (System.in); int x,y,result; x = sc.nextInt(); y = sc.nextInt(); result = x + y; System.out.println(result); }} 必须... 阅读全文
posted @ 2012-03-02 21:33 开开甲 阅读(1056) 评论(0) 推荐(0) 编辑