โ Back to Loops
Question 334
Count Vowels in a Word
Count Vowels in a Word
Read a single word (no spaces) from input and use a loop to count how many vowels it contains. Vowels area,e,i,o,u(both lowercase and uppercase). Print the count followed by a newline. For inputprogrammingthe exact output is: 3
Expected Output:
3
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.