分些下列程序,运行时分别输入0、3、5,输出结果分别是什么? public class Test { public static void main(String[] args ) { int d,a ; Scanner sc =new Scanner(System.in); char[] c={'J','A','V','A'}; try { d= sc.next (); a=42/d; c[d]= 'T'; } catch ( ArithmeticException e){ System.out.println ("Division by zero"); } catch ( ArrayIndexOutOfBoundsException e){ System.out.println (" OutOfBounds "); } finally { System.out.println ("finally"); } } }