【简答题】
写出程序运行结果class Exc0 extends Exception { } class Exc1 extends Exc0 { } class Demo { public static void main(String[] args) { try { throw new Exc1(); } catch (Exc1 e) { System.out.println("Exc1"); } catch (Excception e) { System.out.println("Exception"); } } }
参考答案:
参考解析:
举一反三
【简答题】写出程序运行的结果。 main() {int i,j,m,n; i=8; j=10; m=++i; n=j++; printf("%d,%d,%d,%d,"i,j,m,n); }