题目内容
有以下程序
#include <stdio.h>
main()
{ int s=0,n;
for(n=o;n<3;n++)
{ switch(s)
{ case 0:
case 1: s+=1;
case 2: s+=2; break;
case 3: s+=3;
default: s+=4;
}
printf(”%d,”,s);
}
}
程序运行后的输出结果是
查看答案
搜索结果不匹配?点我反馈
更多问题