网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
下列for循环的次数是() a:=true; b:=false; for I:=a to b do write(i);
- A、0
- B、1
- C、3
- D、4
参考答案
更多 “ 下列for循环的次数是() a:=true; b:=false; for I:=a to b do write(i);A、0B、1C、3D、4” 相关考题
考题
若变量已正确定义,有以下程序段i=0;do printf("%d,",i);while(i++);printf("%d\n",i)其输出结果是A ) 0 , 0B ) 0 , 1C ) 1 , 1D ) 程序进入无限循环
考题
若有以上说明: var i:integer;r:real;c;char; 则下列for循环中不合法的是( )。
Afor r:=1.5 to 4.5 do write(r)Bfor c:=‘e‘ downto ‘b‘ do write(c)Cfor i:=45 to 5 do write(i)Dfor i:=1 to 100 do write(i)
考题
若变量i的初值为8,则下列循环语句中循环体的执行次数为( )。Do While i
若变量i的初值为8,则下列循环语句中循环体的执行次数为( )。Do While iA.3次B.4次C.5次D.6次
考题
以上程序段运行的结果是:______. Dim a(-1 To 5) As Boolean Dim flag As Boolean flag = False Dim i As Integer Dim j As Integer Do Until flag = True For i = -1 To 5 j=j+1 if a(i)= False Then a(i)= True Exit For End If If i = 5 Then flag = True End If Next Loop Print jA.20B.7C.35D.8
考题
若i的初值为8,则下列循环语句的循环次数为( ) 次。Do While i
若i的初值为8,则下列循环语句的循环次数为( ) 次。Do While ii=i+2LoopA、3次B、4次C、5次D、6次
考题
( 16 )下列语句中,可以作为无限循环语句的是A ) for(;;) {}B ) for(int i=0; i10000;i++) {}C ) while(false) {}D ) do {} while(false)
考题
在下面循环语句中循环体执行的次数为( )。int i=0; do i++; while(i*i
在下面循环语句中循环体执行的次数为( )。int i=0; do i++; while(i*iA、4B、3C、5D、2
考题
publicclassAlpha1{publicstaticvoidmain(String[]args){booleanflag;inti=0;do{flag=false;System.out.println(i++);flag=i10;continue;}while((flag)?true:false);}}Whatistheresult?()
A.000000000B.0123456789C.Compilationfails.D.Thecoderunswithnooutput.E.Thecodeentersaninfiniteloop.F.Anexceptionisthrownatruntime.
考题
下列语句中,可以作为无限循环语句的是( )。A.for(;;){}B.for(int i=0;i10000;i++){}C.while(false){}D.do{}while(false)
考题
下列语句中,可以作为无限循环语句的是( )。A.for(;;){}B.for(inti=O;i<10000;i++){}C.while(false){}D.do{}while(false)
考题
现有: class Ifs { public static void main (String [] args) { boolean state=false; int i=2; if( (++i2) && (state=true)) i++; if( (++i4) l l (state=false)) i++; System.out .println (i); } } 结果为:() A、 6B、 5C、 4D、编译失败
考题
int i = 0; while (true) { if(i==4) { break; } ++i; } System.out.println(“i=”+i); What is the result?() A、 i = 0B、 i = 3C、 i = 4D、 i = 5E、 Compilation fails.
考题
有如下程序段: int total = 0; for ( int i = 0; i 4; i++ ){ if ( i == 1) continue; if ( i == 2) break;total += i;} 则执行完该程序段后total的值为()A、0B、1C、3D、6
考题
下列循环能正常结束循环的是()。A、i=5:Do:i=i+1:Loop Until i<0B、i=1:Doi=i+2:Loop Until i=10C、i=10:Doi=i+1:Loop Until i>10D、i=6:Doi=i-2:Loop Until i=1
考题
单选题int i = 0; while (true) { if(i==4) { break; } ++i; } System.out.println(“i=”+i); What is the result?()A
i = 0B
i = 3C
i = 4D
i = 5E
Compilation fails.
考题
单选题现有: class Ifs { public static void main (String [] args) { boolean state=false; int i=2; if( (++i2) && (state=true)) i++; if( (++i4) l l (state=false)) i++; System.out .println (i); } } 结果为:()A
6B
5C
4D
编译失败
考题
单选题以下程序段中,循环次数不超过10的是( )。A
int i=10;do{i=i+1;}while(i0);B
int i=int i=5;do{i+=1;}while(i0);C
int i=1;do{i+=2;}while(i!=10);D
int i=6;do{i-=2;}while(i!=1);
考题
填空题下列程序运行结果为()。 Program main Implicit none Integer::floor=5,i Do i=1, floor If(i==3)cycle If(i==4)cycle Write(*,*)i End do end
热门标签
最新试卷