vote up -6 vote down star

2) Write and run a program that uses a for loop to compute and print the sum of a given number of squares. For example, if the user inputs 5, then the program will print “The sum of the first 5 squares = 55”, which equals 1 2 + 2 2 + 3 2 + 4 2 + 5 2 , and if the user inputs 3, the program will print “The sum of the first 3 squares = 14”, which equals 1 2 + 2 2 + 32

Sample output:

Enter a positive integer: 6

The sum of the first 6 squares = 91

Press any key to continue

flag
4  
I would give you -1, but alas, you just created this account and it would be meaningless. – Kevin Laity Nov 5 at 21:45
5  
You'll have better luck if you try something and ask specific questions about what's not working. People aren't going to do your work for you. – Mark Biek Nov 5 at 21:46
4  
Not only is the title of the question completely useless, there is even a spelling mistake. – Xaero Nov 5 at 21:46
4  
How do you expect to learn if you want to cheat? – Byron Whitlock Nov 5 at 21:47
5  
Also, this website is not a homework machine, where you just drop your homework question so that someone else can do it for you. Show us what you did yourself and ask specific questions about where you got stuck. – Jesper Nov 5 at 21:48
show 6 more comments

closed as not a real question by Mark Biek, Jesper, Brandon, mjv, Byron Whitlock Nov 5 at 21:47

Browse other questions tagged or ask your own question.