โ Back to Functions
Question 412
Count Vowels in a String
Count Vowels in a String
Write a functionint countVowels(string s)that returns the number of vowels (a,e,i,o,u, upper- or lowercase) in the strings. Read one word from standard input, then print the vowel count. For inputEducationthe output is: 5
Expected Output:
5
Topics:
Functions
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.