logo CodeStepByStep logo

You are working on problem set: Week 3 Section ( Pause)

sumOfSquares

Language/Type: C++ recursion return

Write a recursive function named sumOfSquares that accepts an integer parameter n and returns the sum of squares from 1 to n. For example, the call of sumOfSquares(3) should return 12 + 22 + 32 = 14. If your function is passed 0, return 0. If passed a negative number, your function should throw an int as an exception.

Constraints: Your function must be recursive. Do not use loops or data structures.

Function: Write a C++ function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? .

If something seems wrong with our site, please

Is there a problem? Contact us.