CJCoding With Joseph

Sum of Squares up to N

Read an integer N from input. Use a loop to add the squares of the numbers 1 to N (1*1 + 2*2 + ... + N*N) and print the total followed by a newline. For input 3 the exact output is:

14

Expected Output:

14
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
3\n
This input is automatically fed to your program's stdin
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.