โ Back to Functions
Question 405
Sum of Squares from 1 to N
Sum of Squares from 1 to N
Write a functionint sumOfSquares(int n)that returns1*1 + 2*2 + ... + n*n. Call it withsumOfSquares(3)and print the result: 14 (1 + 4 + 9 = 14.)
Expected Output:
14
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.