write a program in Java to find the sum of given series
1/√1,2/√2,3/√3--------------10/√10
plzz tell urgently needed
Answers
Answered by
0
Answer:
The program output is also shown below.
* C Program to Find the Sum of Series 1^3 + 2^3 + 3^3 + … + n^3.
#include <math.h>
int number, i;
int sum = 0;
printf("Enter the maximum values of series n: ");
scanf("%d", &number);
sum = pow(((number * (number + 1) ) / 2),2);
printf("Sum of the series : ");
Similar questions