CJCoding With Joseph

Count Digits and Letters

Read one line of text from standard input. Count how many characters are digits and how many are letters, then print exactly two lines:

Digits: <digitCount>
Letters: <letterCount>

For the input abc123 the output is:

Digits: 3
Letters: 3

Use Character.isDigit(c) and Character.isLetter(c). Ignore spaces and any other characters.

Expected Output:

Digits: 3
Letters: 3
Topics:
Miscellaneous
๐Ÿ“ฅ Auto-Input:
abc123
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.