CJCoding With Joseph

Vowel or Consonant (Input)

Read a single lowercase letter from standard input (use sc.next().charAt(0) to get a char named c). If c is a vowel (a, e, i, o, or u), print <c> is a vowel; otherwise print <c> is a consonant.

For the input e the output is:

e is a vowel

Expected Output:

e is a vowel
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
e\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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.