以下程序段中,循环次数不超过10的是()
A.int i=10; do{ i=i+1;} while(i<0);
B.int i=5; do{ i+=1;} while(i>0);
C.int i=1; do{ i+=2;} while(i!=10);
D.int i=6; do{ i-=2;} while(i!=1);
第1题:
以下程序中,while语句的循环次数是 ______。 #include<iostream.h> viod main() { int i=0; while(i<10) { if(i<1)continue; if(i==5) break; i++; } }
A.1
B.10
C.6
D.死循环,不能确定次数
第2题:
有如下的程序段,该程序段执行完后,共执行的循环次数是 total=0 Counter=1 Do Print Counter total=total * Counter + 1 Print total Counter=Counter +1 If total > 10 Then Exit Do End If Loop While Counter<=10
A.4
B.10
C.15
D.20
第3题:
有以下程序段int k=0;while(k=1)k++;while 如循环执行的次数是
A.无限次
B.有语法错,不能执行
C.一次也不执行
D.执行1次
第4题:
A.4次
B.10次
C.16次
D.20次
第5题:
下面程序段的循环次数是( )。 For k=1 to 10 k=k * 3 Next k
A.1
B.2
C.3
D.4
第6题:
若i、j已定义成int型,则以下程序段中内循环体的总执行次数是( )。
A)20
B)24
C)25
D)30
第7题:
若i.J已定义为int类型,则以下程序段中的内循环体的执行次数是() for(i=4;i;i一一) for(j=0;j<5;j++){„„}
第8题:
有以下程序段,intk=0;while(k=1)k++;while循环执行的次数是()。
第9题:
下面程序段中循环语句的循环次数是()。 For x=10 To 1 Step -3 Write(x) Next x
第10题:
1
2
3
4
第11题:
第12题:
10
15
20
25
第13题:
下面程序段循环次数是( )。 For k=2 to 10 step 2 k=k*2 Next k
A.1
B.2
C.3
D.4
第14题:
有如下程序段,该程序段执行完后,执行循环的次数是 total=0 Counter=1 Do Print Counter total=total + Counter Print total Counter=Counter+1 If total>10 Then Exit Do End If Loop While Counter <=10
A.5
B.10
C.15
D.20
第15题:
A.10
B.0
C.1
D.无限
第16题:
下列程序段中循环体的执行次数是______。 int x=-12; while (x=0) x=x+1;
A.While循环执行12次
B.循环体语句执行一次
C.循环是死循环
D.循环体语句一次也不执行
第17题:
以下程序段的while循环执行的次数是______。int k=0;while(k=1)k++;
A.无限次
B.有语法错,不能执行
C.一次也不执行
D.执行1次
第18题:
以下程序段中循环体的执行次数是()。 x=10; y=0; do{ y+=2; x-=2+y; }while(x>=0);
第19题:
以下程序段,代码中循环执行的次数为()。 inti,sum=0; for(i=1;i<10;i++) { sum+=i;i++; }
第20题:
有以下程序段 int k=0 while(k=1)k++; while 循环执行的次数是()
第21题:
以下程序段运行后,循环体运行的次数为() inti=0,x; for(;i<10;i++)x=x+i;
第22题:
10
0
1
无限
第23题:
0
4
5
10
第24题:
int i=10;do{i=i+1;}while(i<0);
int i=int i=5;do{i+=1;}while(i>0);
int i=1;do{i+=2;}while(i!=10);
int i=6;do{i-=2;}while(i!=1);