考试
1970-01-01 08:00:00

下面程序的运行结果是( )public class Demo

题目描述

下面程序的运行结果是( )public class Demo {public static void main(String[] args) {try {System.out.println(10 / 0);} catch (RuntimeException e) {System.out.println("RuntimeException");} catch (ArithmeticException e) {System.out.println("ArithmeticException");}}

答案解析

4609

加载中...
AI正在思考中,请稍候...