Computer Applications
Write a program in Java to find the sum of the given series:
S = 12/a + 32 / a2 + 52 / a3 + …… to n terms
Java
Java Iterative Stmts
22 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, j = 1; i <= n; i++, j=j+2)
sum += Math.pow(j, 2) / Math.pow(a, i);
System.out.println("Sum = " + sum);
}
}
Variable Description Table
Program Explanation
Output
Answered By
9 Likes
Related Questions
Write a program in Java to find the sum of the given series:
S = 1 + 22 / a + 33 / a2 + …… to n terms
Write the program to find the sum of the following series:
S = a + a2 + a3 + ……. + an
Write a program in Java to find the sum of the given series:
S = 1/a + 1/a2 + 1/a3 + …… + 1/an
Write a program in Java to find the sum of the given series:
S = x/2 + x/5 + x/8 + x/11 + …… + x/20