switch(i)的语法很特殊.每一个case后的值和switch(i)中的i值比,相同就执行这个分支.但执行每个分支结束时,一般都加上break;这样就跳出了switch语句.但你要把"多个case分支共用一组语句"这样就可以把break去掉.像楼上所编的那样...
看看这个:
#include<stdio.h>
void main()
{
switch(0)
{
case 0: printf("i=0\n");
case 1: printf("i=1\n");break;
case 2: printf("i=2\n");
//default: printf("other\n");
}
switch(1)
{
case 0: printf("i=0\n");
case 1: printf("i=1\n");break;
case 2: printf("i=2\n");
//default: printf("other\n");
}
}
温馨提示:答案为网友推荐,仅供参考