【单选题】下面程序的输出结果是( )。 public class Sun { public static void main (String args[ ]) { int x=0 for (int i=1 i<=4 i++) { x=4 for (int j=1 j<=3 j++) { x=3 for(int k=1k<=2k++) { x=x+6 } } } System.out.println (x) ...
【单选题】下面程序的输出结果是( )。 Public class Sun { public static void main(String args[ ]) { int i = 9 switch (i) { default: System.out.println('default') case 0: System.out.println('zero') break case 1: System.out.pr...