Hi guys,
I need help writing a program that outputs the number of vowels in a string using a while loop, and it will output
number of a's
number of e's
number of i's
number of o's
number of u's
Zero, create a variable to store the current amount.
First, iterate through each character from a string.
Second, check whether the current character is either a,e,o,i, or u.
Third, if it is equal to any of those, increment the current amount variable and continue the loop.
Fourth, output the amount :)