โ Back to Miscellaneous
Question 407
Count Digits and Letters
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 inputabc123the output is: Digits: 3 Letters: 3 UseCharacter.isDigit(c)andCharacter.isLetter(c). Ignore spaces and any other characters.
Expected Output:
Digits: 3 Letters: 3
Topics:
Miscellaneous
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.