c++ 判断是元音还是辅音

Posted sea-stream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ 判断是元音还是辅音相关的知识,希望对你有一定的参考价值。

 

#include <iostream>
using namespace std;
 
int main()

    char c;
    int isLowercaseVowel, isUppercaseVowel;
 
    cout << "输入一个字母: ";
    cin >> c;
 
    // 小写字母元音
    isLowercaseVowel = (c == a || c == e || c == i || c == o || c == u);
 
    // 大写字母元音
    isUppercaseVowel = (c == A || c == E || c == I || c == O || c == U);
 
    // if 语句判断
    if (isLowercaseVowel || isUppercaseVowel)
        cout << c << " 是元音";
    else
        cout << c << " 是辅音";
 
    return 0;

 

以上是关于c++ 判断是元音还是辅音的主要内容,如果未能解决你的问题,请参考以下文章

BC46 判断是元音还是辅音

C ++从文本文件中计算元音辅音

德语发音教程:元音和辅音

以元音、辅音开头的单词的读数

我的辅音/元音替换有啥错误?

HDU 1039(字符串判断 **)