CJCoding With Joseph

Recursive Sum of Digits

Complete the static method sumDigits so it returns the sum of the digits of a non-negative integer using RECURSION.

For sumDigits(1234) the program prints 10 (1+2+3+4).

Expected Output:

10
9
Topics:
Methods
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.