case在c语言中是什么意思
时间: 2023-12-02 09:03:28 浏览: 448
c语言switch case语句.docx 代码
在C语言中,case是一个关键字,通常用于switch语句中。它后面跟着一个常量表达式,用于匹配switch语句中的某个特定值。例如:
```c
switch (x) {
case 1:
printf("x is 1");
break;
case 2:
printf("x is 2");
break;
default:
printf("x is not 1 or 2");
}
```
在上面的代码中,case被用于匹配x的值,如果x等于1,则输出"x is 1",如果x等于2,则输出"x is 2",否则输出"x is not 1 or 2"。注意,每个case后面都要跟着一个break语句,用于跳出switch语句的执行。
阅读全文