Monday, September 16, 2019

Vowel or Not Using C++

Here is a sample program was written by my friend Sir John Lester Dela Cruz a fellow software engineer this program will ask the user to give a character and then the program will check if the given character is a vowel or not using C++.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com.


Program Listing

#include <iostream>

using namespace std;

int main()
{
    char vowel;
    cout << "Enter a letter: ";
    cin >> vowel;
    cout<<endl;
    if(vowel == 'a' || vowel == 'e' || vowel == 'i' || vowel == 'o' || vowel == 'u')
     {
    cout << "Vowel";
     }
    else
    {
    cout << "Consonant, Symbol, Combination of letters and numbers or different characters";
}
    return 0;

}

1 comment:

  1. Very significant Information for us, I have think the representation of this Information is actually superb one. This is my first visit to your site. Experienced WordPress Developer

    ReplyDelete