Question 5
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
int main()
{
char c;
cout << "Type any character: "; // Type a character and press enter
cin >> c;
if(c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u')
{
cout << c << " is a vowel.";
}
else
{
cout << c << " is a consonant.";
}
}