Computer Applications
Write a program in Java to find the sum of the given series:
1/2 + 2/3 + 3/4 + … + 49/50
Java
Java Iterative Stmts
4 Likes
Answer
import java.util.Scanner;
public class KboatSeries
{
public static void main(String args[]) {
double sum = 0;
for (int i = 1; i <= 49; i++)
sum += i / (double)(i + 1);
System.out.println("Sum = " + sum);
}
}
Output

Answered By
3 Likes
Related Questions
Write a program in Java to find the sum of the given series:
x1 + x2 + x3 + x4 … + xn
Write a program in Java to find the sum of the given series:
x1 - x2 + x3 - x4 … - xn , where x = 3
Write a program in Java to find the sum of the given series:
1/x1 + 2/x2 + 3/x3 + … + n/xn
Write a program in Java to find the sum of the given series:
1/√1 + 2/√2 + 3/√3 + … + 10/√10