A.5,6
B.5,5
C.6,5
D.6,6
第1题:
5、若有循环: int x=5,y=20; do { y-=x; x+=2; }while(x<y); 则循环体将被执行____次。
A.2
B.1
C.0
D.3
第2题:
13、int x=5, y=20; do{ y -= x; x += 2; }while(x<y) 以上循环体执行()次
A.0
B.1
C.2
D.3
第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题:
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); } }
第5题:
若有循环: int x=5,y=20; do { y-=x; x+=2; }while(x
A.1
B.0
C.3