网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
执行语句序列int i=0;while(i<25)i+=3;cout<
A

24

B

25

C

27

D

28


参考答案

参考解析
解析:
i的初值为0,每循环一次,i的值都加3,因此,i始终为3的倍数。当i=24时,i<25,执行while的循环体i+=3,得i=27,不满足i<25的条件,结束循环。此时,输出i=27。
更多 “单选题执行语句序列int i=0;while(i25)i+=3;cout A 24B 25C 27D 28” 相关考题
考题 执行下列语句后,输出的结果为______。void run(){static int x=3;x++;cout<<x<<" ";}int main(){for(int i=0;i<2;i++)fun();return D;}

考题 执行下列语句序列: inti=0;while(i25)i+=3;cout<<i; 输出结果是( )。A.24B.25C.27D.28

考题 ( 7 )在执行语句序列int i=0; do i++; while(i*i10);时, do 后面的循环体语句 i++ 被执行的次数为 【 7 】 。

考题 以下程序的输出结果是( )。 min() { int i=0,a=0; while(i<20) { for(;;) { if((i%10)==0)break; else i--; } i+=11;a+=i; } cout<<a<<endl; }A.21B.32C.33D.11

考题 有如下语句序列:int k=0:d0{k+=5;cout0)cout 有如下语句序列: int k=0: d0{k+=5;cout<<‘$’;} while(k<19); while(k-->0)cout<<‘*’; 执行上面:的语句序列输出字符“$”和“*”的个数分别是( )。A.4和20B.5和20C.4和21D.5和21

考题 下列程序执行后的输出结果是void funcl(int i);void func2(int i);char st[]="hello,friend!";void fund(int i){ cout<<st[i];if(i<3){i+=2;func2(i);}}void func2(int i){ cout<<st[i];if(i<3){i+=2;funcl(i);}}main( ){int i=0;fund(i);cout<<endl;}A.helloB.helC.hloD.hlm

考题 在下面循环语句中循环体执行的次数为( )。int i=0; do i++; while(i*i 在下面循环语句中循环体执行的次数为( )。int i=0; do i++; while(i*iA、4B、3C、5D、2

考题 有如下语句序列:int k=0:do{k+=5;cout0)cout 有如下语句序列: int k=0: do{k+=5;cout<<'$';} while(k<19); while(k-->0)cout<<'*'; 执行上面的语句序列输出字符“$”和“*”的个数分别是( )。A.4和20B.5和20C.4和21D.5和21

考题 执行下列语句序列: int i=0;while(i<25)i+=3;cout<<i; 输出结果是( )。A.24B.25C.27D.28

考题 以下程序的输出结果是main( ){int i=0,a=0;while(i<20){for(;;){if((i%10)==0)break;else i - -;}i+=11;a+=i;}cout<<a<<endl;}A.21B.32C.33D.11

考题 执行语句序列 iht i=0;while(i<25)i+=3;cout<<i; 输出结果是A.24B.25C.27D.28

考题 下列语句序列执行后,j的值是( )。 int j=0; for (int i=3 i>0; i- -)j+=i;A.3B.4C.6D.5

考题 下列循环语句中有语法错误的是A.int i;for(i=1;i10;i++) cout‘*’;B.int i,j;for(i=1,j=0;i10;i++,j++)cout‘*’;C.int i=0;for(;i10;i++)cout‘*’;D.for(1) cout‘*’;

考题 执行语句序列 inti=0;while(i<25)i+=3;cout<<i; 输出结果是A.24B.25C.27D.28

考题 下面程序执行后的结果是()。includeusing namespace std;void func1(int i);void func 下面程序执行后的结果是( )。 #include<iostream> using namespace std; void func1(int i); void func2(int i); char st[]="hello, friend!"; void func1(int i) { cout<<st[i]; if(i<3){i+=2;func2(i);} } void func2(int i) { cout<<st[i]; if(i<3){i+=2;func1(i);} } void main() { int i=0;func1(i);cout<<endl;}A.elloB.helC.hloD.him

考题 有如下语句序列:int k=0;do{k+=5; cout0)cout 有如下语句序列: int k=0; do{k+=5; cout<<'$';} while(k<19); while(k--0>0)cout<<'*'; 执行上面的语句序列输出字符$和*的个数分别是A.4和20B.55和20C.4和21D.5和21

考题 有以下程序main(){ int p[7]= {11,13,14,15,16,17,18},i=0,k=0; while(i<7 p[i] %2) { k= k+ p[i];i+ +;} cout<<k<<end1;}执行后输出结果是A.58B.56C.45D.24

考题 有以下程序main( ){ int i=0,s=0;do{ if(i%2) {i+ +; continue; } i++; s+=i;}while(i<7)cout<<s<<end1;}执行后输出结果是A.16B.12C.28D.21

考题 执行下列语句序列:inti=0;while(i25)i+=3;couti;输出结果是( )。A.24B.25C.27D.28

考题 执行下列语句段后,输出字符“*”的个数是( )。 for(int i=50;i1;i-=2)Cout*: A.24S 执行下列语句段后,输出字符“*”的个数是( )。 for(int i=50;i1;i-=2)Cout*:A.24B.25C.26D.50

考题 以下循环体的执行次数是( )。 main() {int i,j; for(i=0,j=1;i<=j+1;i+=2,j--)cout<<i<<endl; }A.3B.2C.D.0

考题 执行语句序列 int i=0;while(i<25)i+=3;cout<<i; 输出结果是( )。A.24B.25C.27D.28

考题 以下程序的输出结果是 main( ) { int i=0,a=0: while(i<20) { for{::) { if((i%10)==0)break; else i--; } i+=11;a+=i; } cout<<a<<end1; }A.21B.32C.33D.11

考题 以下循环体的执行次数是main( ){int i,j;for(i=0,j=1;i<=j+1;i+=2,j- -)cout<<i<<endl;}A.3B.2C.1D.0

考题 有如下语句序列:int k=0;do { k+=5;cout 0)cout 有如下语句序列: int k=0; do { k+=5;cout <<'$;}while (k<19); while(k-- >0)cout<<'*';执行上面的语句序列输出字符$和*的个数分别是______ 。A.4和20B.5和20C.4和21D.5和21

考题 以下程序输出结果是 ______。includevoid n(int i);void f2(int i);char st[]=”Howd 以下程序输出结果是 ______。 #include<iostream.h> void n(int i); void f2(int i); char st[]=”Howdoyoudo!”; void fl(int i){ cout<<st[i]; if(i<3){ i+=2: f2(i): } } void f2(int i) { cout<<st[i]; if(i<3) { i+=2; f1(i); } } void main() { int i=0; f1(i); }A.HowB.doC.HwoD.Hwoy

考题 单选题以下程序段中,循环次数不超过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);

考题 单选题执行语句序列int i=0;while(i25)i+=3;cout A 24B 25C 27D 28