CJCoding With Joseph

Function: Count Vowels

Complete the function countVowels so it returns how many lowercase vowels (a, e, i, o, u) are in a string. The main function reads a single word and prints the vowel count.

Example: input 'banana' prints 3.

Expected Output:

3
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
banana\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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.