STRINGS

how can i develop a C++ application which allows the user to input a character and output a message indicating if the character is a vowel or a consonant.
Remember: the vowels are: a, e, i, o, u, y
Do I need to consider separately the capital letters and the small letters in my program?
You can do this by thinking carefully about what the code needs to do, and then breaking that down into steps, and then writing code to do each step.

You might find the following things useful to you: cin, cout, string.
Topic archived. No new replies allowed.