โ Back to Methods
Question 152
Recursive Sum of Digits
Recursive Sum of Digits
Complete the static method SumDigits so it returns the sum of the digits of a non-negative integer using RECURSION. Do NOT write a Main method.
For SumDigits(1234) the program prints 10.Expected Output:
10
Topics:
Methods
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.