CJCoding With Joseph

Count Vowels in a String

Read a line of text from input and use a loop to count how many vowels (a, e, i, o, u, upper or lower case) it contains, then print the count.

For input Hello World the output is:

3

Expected Output:

3
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
Hello World\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.