C++switchcase用法
时间: 2024-01-18 08:18:49 浏览: 84
C++中的switch-case语句用于根据表达式的值跳转到对应的case标签,并执行标签中的语句或语句块。下面是一个使用switch-case语句的示例:
```cpp
#include <iostream>
int main() {
int x = 2;
switch (x) {
case 1:
std::cout << "x equals 1" << std::endl;
break;
case 2:
std::cout << "x equals 2" << std::endl;
break;
case 3:
std::cout << "x equals 3" << std::endl;
break;
default:
std::cout << "x is other than 1, 2 and 3" << std::endl;
break;
}
return 0;
}
```
在上面的示例中,我们定义了一个整数变量x,并使用switch语句根据x的值执行相应的操作。如果x的值为1,则输出"x equals 1";如果x的值为2,则输出"x equals 2";如果x的值为3,则输出"x equals 3";如果x的值不是1、2或3,则输出"x is other than 1, 2 and 3"。
阅读全文