Today will discuss:
1. Program to find whether the alphabet is a vowel or consonant in c++ or
using namespace std;
int main(){
char ch;
cout<<“Enter an alphabet :”<
switch(ch)
{
case ‘a’:
case ‘e’:
case ‘i’:
case ‘o’:
case ‘u’:
case ‘A’:
case ‘E’:
case ‘I’:
case ‘O’:
case ‘U’:
cout<<“Alphabet is an vowel”<
default:
cout<<“Alphabet is a consonant”;
}
return 0;
}
First, run:
Enter the alphabet :
a
The alphabet is an vowel
Second-time run:
Enter the alphabet :
d
The alphabet is a consonant
Explanation: In this programming, we use the Switch case to check an alphabet is an vowel or a consonant
Hello, Friend We first write the program and compile them and run the program to check compiler error or run time error.
Please share the site and comment on your ideas and your suggestions. All suggestion was all welcome.
If any question or doubt in the programming please mention the comment.
Thank yours very much.