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