A.X=6
B.X=5
C.X=2
D.编译失败
第1题:
A.55
B.56
C.65
D.66
第2题:
写出下面程序的运行结果,了解do-while语句的使用。 public class cs5 { public static void main(String[] args) { int x = 23; do{ System.out.print(x--); }while(x>20); } }
第3题:
下列程序输出结果是什么? public class E { public static void main(String[] args) { int x=1,y=6; while(y-->0) { x--; } System.out.print("x="+x+",y="+y); } }
第4题:
【分录题】写出以下程序运行结果。 public class Demo7 { public static void main(String[] args) { int i=1,j=0; int x=2; while(x<13) { for(;;) { if(i*j>10) break; i++; j++; } x=x+2; } System.out.println(x); System.out.println(i); System.out.println(j); } }
第5题:
28、下列程序输出结果是什么? public class E { public static void main(String[] args) { int x=1,y=6; while(y-->0) { x--; } System.out.print("x="+x+",y="+y); } }