c语言default在switch语句中部时后边的case还执行吗

2024-11-17 07:23:08
推荐回答(3个)
回答1:

default是在所有case都不满足时才执行,与其位置无关
在程序中default的位置可以任意,因为编译到exe后,程序执行时先判断所有case,然后再判断是否跳到default的地址(即指针),然后往后执行

回答2:

用BREAK才会跳出。defalt会继续执行下去。和CASE语句是类似的

回答3:

执行default后所有语句,如下面简单代码:
int num;
while(scanf("%d", &num)==1){
switch(num){
case 1: printf("1\n");break;
default : printf("000\n");break;
case 12: printf("12\n");break;}
}