logo - 刷刷题
下载APP
【简答题】

写出程序运行结果class Demo { public static void main(String[] args) { try { showExce(); System.out.print("A"); } catch (Exception e) { System.out.print("B"); } finally { System.out.print("C"); } System.out.print("D"); } public static void showExce() throws Exception { throw new Exception(); } }

举报
题目标签:程序运行
参考答案:
参考解析:
.
刷刷题刷刷变学霸