c++判断元音辅音switch
时间: 2024-01-01 17:20:07 浏览: 113
C++ - switch 函数 - 判断
在C++中,可以使用switch语句来判断元音和辅音。可以先定义一个字符变量,然后使用switch语句进行判断。例如:
char c = 'a';
switch (c) {
case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
cout << "元音" << endl;
break;
default:
cout << "辅音" << endl;
break;
}
以上代码中,先定义了一个字符变量c,并将其赋值为'a'。然后使用switch语句进行判断,如果c的值是元音字母(a、e、i、o、u),则输出"元音",否则输出"辅音"。
阅读全文