switch语句case的用法,求解~
int a=1;switch(a){
case 0:printf("zero");
case 1:printf("one");
case 2:printf("two");
case 3:printf("three");
}
我输出的结果是“onetwothree”,所以我想问,是否case 1匹配成功以后,在忽略“break”的情况下,case 2,case 3默认为匹配成功,进而显示出“two”和“three”?谢谢指点迷津啊啊~~~