摘要: 1: 单组输入 a+b sdut 1000 1 import java.util.Scanner; 2 public class Main { 3 public static void main(String args[]){ 4 5 Scanner r = new Scanner(System.in) ; 6 int a = r.nextInt(); 7 int b = r.nextInt(); 8 int c = a + b; 9 System.... 阅读全文
posted @ 2013-03-02 21:17 Szz 阅读(374) 评论(3) 推荐(0)