在C ++中查找字符是元音还是辅音的程序

在本教程中,我们将讨论一个程序来查找字符是元音还是辅音。

为此,我们将被提供一个角色。我们的任务是向用户打印出所提供的字符是元音还是辅音。

示例

#include <iostream>

using namespace std;

//checking if the character is a vowel or consonant

void is_vowel(char x){

   if (x == 'a' || x == 'e' || x == 'i' || x == 'o' || x == 'u')

      cout << "Vowel" << endl;

   else

      cout << "Consonant" << endl;

}

int main(){

   is_vowel('c');

   is_vowel('e');

   return 0;

}

输出结果

Consonant

Vowel

以上是 在C ++中查找字符是元音还是辅音的程序 的全部内容, 来源链接: utcz.com/z/317076.html

回到顶部