CJCoding With Joseph

Count Vowels in a String

Write a function int countVowels(string s) that returns the number of vowels (a, e, i, o, u, upper- or lowercase) in the string s. Read one word from standard input, then print the vowel count.

For input Education the output is:

5

Expected Output:

5
Topics:
Functions
๐Ÿ“ฅ Auto-Input:
Education\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.