โ Back to Functions/Methods
Question 296
Function: Sum of Squares from 1 to N
Function: Sum of Squares from 1 to N
Write a functionsumSquares(int n)that returns 1^2 + 2^2 + ... + n^2. Call it with5and print the result: 55 Print with%d.
Expected Output:
55
Topics:
Functions/Methods
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.