CJCoding With Joseph

Count Digits in a String

Read one line of text from input and print how many of its characters are digits (0-9). For the input a1b2c3, the output is:

3

Expected Output:

3
Topics:
Strings
๐Ÿ“ฅ Auto-Input:
a1b2c3
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 (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.