CJCoding With Joseph

Uppercase Letter Check (Input)

Read a single character from standard input (use sc.next().charAt(0) to get a char named c). If c is an uppercase letter (between A and Z), print Uppercase letter; otherwise print Not an uppercase letter.

For the input G the output is:

Uppercase letter

Expected Output:

Uppercase letter
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
G\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.