Write a C++ Program For Check Whether a character is Vowel or Consonant.

Ram Pothuraju
#include <iostream>
using namespace std;



int main() {
    char c;
    cout << "Enter an alphabet: ";
    cin >> c;
    if(c=='a'||c=='A'||c=='e'||c=='E'||c=='i'||c=='I'||c=='o'||c=='O'||c=='u'||c=='U') {
        cout << c << " is a vowel.";
    }
    else {
        cout << c << " is not a vowel.";
    }
    
    return 0;
}


Output

Enter an alphabet: u
g is a vowel.

Post a Comment

0Comments

Post a Comment (0)