logo CodeStepByStep logo

SumOfSquares

Language/Type: VB 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. You may assume that the function will not be passed a negative number.

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

Function: Write a VB 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? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.