摘要: //A.javaimport java.io.*;public class A {static BufferedReader br; public static void main(String[] args) { br = new BufferedReader(new InputStreamReader(System.in)); try { int a = exec1(); int b = exec2(); System.out.println("The total is " + (a + b));... 阅读全文
posted @ 2014-02-14 11:01 JUSTINGDOIT 阅读(471) 评论(0) 推荐(0) 编辑