运行以下程序时,控制台上显示什么? public class Test { public static void main(String[] args) { try { System.out.println('Welcome to Java'); int i = 0; double y = 2.0 / i; System.out.println('Welcome to HTML'); } finally { System.out.println('The finally clause is executed'); } } }

A.Welcome to Java.B.Welcome to Java和 The finally clause is executed.C.Welcome to Java, Welcome to HTML和The finally clause is executed.D.什么都不输出.

时间:2024-04-02 17:29:08

相似题目