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