CJCoding With Joseph

Sum of Squares 1 to N

Read an integer n from standard input and print the sum of the squares 1*1 + 2*2 + ... + n*n, with no trailing newline. For example, if the input is 3, the sum is 1 + 4 + 9, so print:

14

Accumulate i * i in a loop.

Expected Output:

14
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
3
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.