题目内容
给出下列程序的输出结果。import java.io.IOException;public class E {public static void main(String args[]){try {methodA();}catch(IOException e){System.out.print("你好");System.exit(0);}finally {System.out.println(" fine thanks");}}public static void methodA() throws IOException{throw new IOException();}}
查看答案
搜索结果不匹配?点我反馈