若有以下程序: #include<stdio.h> main( ) { int s=0,n; for(n=0;n<4;n++) { switch(n) { default:s+=4; ease 1:s+=1; case 2:s+=2; case 3:s+=

admin2022-06-24  12

问题 若有以下程序:
#include<stdio.h>
main( )
{
int s=0,n;
for(n=0;n<4;n++)
{
switch(n)
{
default:s+=4;
ease 1:s+=1;
case 2:s+=2;
case 3:s+=3;
}
}
printf("%d\n",s);
}
则程序的输出结果是(          )。

选项 A、6
B、18
C、10
D、24

答案D

解析 第一次for循环,n的值为0,所以从default后面的语句开始执行s+=4,s+=1,s+=2,s+=3,s的值为10。进入第二次for循环,n的值为1,所以执行s+=1,s+=2,s+=3,s的值为16。进入第三次for循环,n的值为2,所以执行s+=2,s+=3,s的值为21。进入第四次for循环,n的值为3,所以执行a+=3,s的值为24。
转载请注明原文地址:https://kaotiyun.com/show/gTkp777K
0

最新回复(0)