在本教程中,我们将讨论一个程序来查找字符是元音还是辅音。
为此,我们将被提供一个角色。我们的任务是向用户打印出所提供的字符是元音还是辅音。
#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