CJCoding With Joseph

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 are a, e, i, o, u (both lowercase and uppercase). Print the count followed by a newline. For input programming the exact output is:

3

Expected Output:

3
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
programming\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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.