【单选题】分析下面的Java程序,其输出结果为 public class Test{ public static void main(String[] ards) throws Exception{ try{ throw new Exception();} catch(Exception e){ System.out.println("Caught Exception!");} System.out.pr...
【简答题】分析下面的Java程序,编译运行的结果是____。 public class B{ public static void main(String[] args){ String s="y"; System.out.println(s+1+2);//第1空 System.out.println(1+2+s);//第2空 } }