CJCoding With Joseph

Count Vowels in a String (for)

The variable s holds the word education. Use a for loop to count how many vowels (a, e, i, o, u) it contains, then print:

Vowels: 5

Check each character with s.charAt(i).

Expected Output:

Vowels: 5
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.