CJCoding With Joseph

Function: Sum of Digits

Complete the function sumDigits so it returns the sum of the digits of a positive integer. The main function reads the number and prints the digit sum.

Example: input 1234 prints 10.

Expected Output:

10
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
1234\n
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.