Create a C++ program using for statement, that will display the sample output below. The said program will accept any letters from ranging from a to z and will also determine whether the inputted letter is a VOWEL or CONSONANT. Be sure to allow the users to use lower as well as uppercase letters. Letter Q or q will be use to terminate the program. Sample Possible Outputs: Please enter any letter: A A is a VOWEL LETTER Continue [ Y or N ]: Y Please enter any letter: V V is a CONSONANT LETTER Continue [ Y or N ]: N Thank you for using the program Sample Possible Outputs: Please enter any letter: S A is a VOWEL LETTER Continue [ Y or N ]: y Please enter any letter: Q _ (exit from the output screen and will display the SOURCE CODE screen as manifestation that the program is being TERMINATED )
Create a C++
Sample Possible Outputs:
Please enter any letter: A
A is a VOWEL LETTER
Continue [ Y or N ]: Y
Please enter any letter: V
V is a CONSONANT LETTER
Continue [ Y or N ]: N
Thank you for using the program
Sample Possible Outputs:
Please enter any letter: S
A is a VOWEL LETTER
Continue [ Y or N ]: y
Please enter any letter: Q
_ (exit from the output screen and will
display the SOURCE CODE screen as
manifestation that the program is being
TERMINATED )
Trending now
This is a popular solution!
Step by step
Solved in 2 steps