CJCoding With Joseph

Digit Sum of a Number

Read a positive integer from input and print the sum of its digits. For example, if the input is:

1234

print:

10

(1 + 2 + 3 + 4 = 10). Extract each digit with % 10 and then divide by 10 in a loop.

Expected Output:

10
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
1234
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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.