โ Back to Loops
Question 337
Sum of Squares up to N
Sum of Squares up to N
Read an integerNfrom input. Use a loop to add the squares of the numbers 1 toN(1*1 + 2*2 + ... + N*N) and print the total followed by a newline. For input3the exact output is: 14
Expected Output:
14
Topics:
Loops
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.