5.classOrder2implementsRunnable{6.publicvoidrun(){7.for(intx=0;x〈4;x++){8.try{Thread.sleep(100);}catch(Exceptione){}9.System.out.print("r");10.}}11.publicstaticvoidmain(String[]args){12.Threadt=newThread(newOrder2());13.t.start();14.for(intx=0;x〈4;x++){15.//insertcodehere16.System.out.print("m");17.}}}哪一个插入到第15行,最有可能产生输出rmrmrmrm?()
A.Thread.sleep(1);
B.Thread.sleep(100);
C.Thread.sleep(1000);
D.try{Thread.sleep(100);}catch(Exceptione){}
第1题:
以下for循环的执行次数是() for(int x=0;(x==0)&(x<4);x++);
A.无限次
B.一次
C.执行4次
D.执行3次
第2题:
设有定义:int x, y;,则以下for循环执行的次数为() for(x=0, y=0; (y!=123)&&(x<4); x++);
A.3
B.4
C.不定
D.无限循环
第3题:
下面的for语句循环体执行的次数是 。 int x,y,i=0; for(x=0,y=10;(y>0)&&(x<4);x++,y-- ) i++ ;
第4题:
3、以下for循环的执行次数是() for(int x=0;(x==0)&(x<4);x++);
A.无限次
B.一次
C.执行4次
D.执行3次
第5题:
21、以下for循环的执行次数是() for(int x=0;(x==0)&(x<4);x++);
A.无限次
B.一次
C.执行4次
D.执行3次