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