单项选择题

public class TestApp{  
public int mymethod(){  
try{  
int i = 0;  
int j = 1 / i;  
System.out.println(“1”);  
}finally{  
System.out.print(“4”);  }  
return 1;  }  }  
上述程序运行后的输出是哪项?() 

A. 4
B. 14
C. 41
D. 以上都不对

相关考题