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
