Computer Applications
Write a program in Java to find the sum of the given series:
S = 1/a + 1/a2 + 1/a3 + …… + 1/an
Java
Java Iterative Stmts
18 Likes
Answer
import java.util.Scanner;
public class KboatSeries
{
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
System.out.print("Enter a: ");
int a = in.nextInt();
System.out.print("Enter n: ");
int n = in.nextInt();
double sum = 0.0;
for (int i = 1; i <= n; i++)
sum += 1 / Math.pow(a, i);
System.out.println("Sum = " + sum);
}
}
Variable Description Table
Program Explanation
Output
Answered By
8 Likes
Related Questions
Write a program in Java to find the sum of the given series:
S = x/2 + x/5 + x/8 + x/11 + …… + x/20
In order to reach the top of a pole, a monkey in his first attempt reaches to a height of 5 feet and in the subsequent jumps, he slips down by 2% of the height attained in the previous jump. The process repeats and finally the monkey reaches the top of the pole. Write a program to input height of the pole. Calculate and display the number of attempts the monkey makes to reach the top of the pole.
Write a program in Java to find the sum of the given series:
S = 1 + 22 / a + 33 / a2 + …… to n terms
Write a program in Java to find the sum of the given series:
S = 12/a + 32 / a2 + 52 / a3 + …… to n terms