โ Back to User Input
Question 364
Digit Sum of a Number
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
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.