Question: 8. Write a program in C++ to accept input integer n and calculate the sum of the series (1*1) + (2*2)+(3*3) + (4*4) +
8. Write a program in C++ to accept input integer n and calculate the sum of the series (1*1) + (2*2)+(3*3) + (4*4) + (5*5) + + (nn). Draw the Flow Chart also. Sample Output: Input the value for nth term: 5 1*1 = 1 2*2 = 4 3*3 = 9 *** 4*4 = 16 5*5 = 25 The sum of the above series is: 55
Step by Step Solution
3.47 Rating (150 Votes )
There are 3 Steps involved in it
Below is a simple C program to calculate the sum of ... View full answer
Get step-by-step solutions from verified subject matter experts
