c语言switch case语句练习
时间: 2023-11-11 14:00:05 浏览: 143
C语言switch语句
好的,关于C语言中的switch case语句,可以用来根据不同的条件执行不同的代码块。下面是一个简单的例子:
```
#include <stdio.h>
int main() {
int num = 2;
switch(num) {
case 1:
printf("num is 1\n");
break;
case 2:
printf("num is 2\n");
break;
case 3:
printf("num is 3\n");
break;
default:
printf("num is not 1, 2, or 3\n");
}
return 0;
}
```
输出结果为:
```
num is 2
```
在这个例子中,我们定义了一个整型变量num,并将其赋值为2。然后使用switch语句根据num的值执行不同的代码块。由于num的值为2,所以执行了第二个case语句块,并输出了"num is 2"。
阅读全文