Computer Applications
Write the program to find the sum of the following series:
S = (1/a) + (2/a2) + (3/a3) + ……. to n
Java
Java Iterative Stmts
17 Likes
Answer
import java.util.Scanner;
public class KboatSeries
{
public void computeSeriesSum() {
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 += (i / Math.pow(a, i));
}
System.out.println("Sum=" + sum);
}
}
Variable Description Table
Program Explanation
Output
Answered By
9 Likes
Related Questions
Write the program to find the sum of the following series:
S = (a/2) + (a/5) + (a/8) + (a/11) + ……. + (a/20)
Write the program to find the sum of the following series:
S = (a+1) + (a+2) + (a+3) + ……. + (a+n)
Write a program to enter two numbers and check whether they are co-prime or not.
[Two numbers are said to be co-prime, if their HCF is 1 (one).]
Sample Input: 14, 15
Sample Output: They are co-prime.Write the program to find the sum of the following series:
S = a - a3 + a5 - a7 + ……. to n