CJCoding With Joseph

Function: Recursive Sum to N

Complete the function sumTo so it returns the sum of all integers from 1 to n using RECURSION (no loops). The main function reads n and prints the sum.

Base case: sumTo(0) is 0. Recursive case: sumTo(n) = n + sumTo(n - 1).

Expected Output:

55
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
10\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.