Computer Applications
Write a program in Java to find the sum of the given series:
(1/2) + (2/3) + (3/4) + …… + (19/20)
Java
Java Iterative Stmts
67 Likes
Answer
public class KboatSeries
{
public static void main(String args[]) {
double sum = 0.0;
for (int i = 1; i <= 19; i++)
sum += (i / (double)(i + 1));
System.out.println("Sum = " + sum);
}
}
Variable Description Table
Program Explanation
Output
Answered By
30 Likes
Related Questions
Write a program in Java to find the sum of the given series:
2 - 4 + 6 - 8 + …… - 20
Write a program in Java to find the sum of the given series:
1 + (1/2) + (1/3) + …… + (1/20)
Write a program in Java to find the sum of the given series:
1 + (1/3) + (1/5) + …… + (1/19)
Write a program in Java to find the sum of the given series:
(1*2) + (2*3) + …… + (19*20)