CJCoding With Joseph

Sum of Squares from 1 to N

Write a function int sumOfSquares(int n) that returns 1*1 + 2*2 + ... + n*n. Call it with sumOfSquares(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.