嵌套的 switch 语句(nested switch statements)
优质
小牛编辑
132浏览
2023-12-01
可以将开关作为外部开关的语句序列的一部分。 即使内部和外部交换机的大小写常量包含公共值,也不会产生冲突。
语法 (Syntax)
nested switch语句的语法如下 -
switch(ch1) {
case 'A':
printf("This A is part of outer switch" );
switch(ch2) {
case 'A':
printf("This A is part of inner switch" );
break;
case 'B': /* case code */
}
break;
case 'B': /* case code */
}
例子 (Example)
#include <stdio.h>
int main () {
/* local variable definition */
int a = 100;
int b = 200;
switch(a) {
case 100:
printf("This is part of outer switch\n", a );
switch(b) {
case 200:
printf("This is part of inner switch\n", a );
}
}
printf("Exact value of a is : %d\n", a );
printf("Exact value of b is : %d\n", b );
return 0;
}
编译并执行上述代码时,会产生以下结果 -
This is part of outer switch
This is part of inner switch
Exact value of a is : 100
Exact value of b is : 200