Computer Applications
Write the program to find the sum of the following series:
S = (a/2) + (a/5) + (a/8) + (a/11) + ……. + (a/20)
Java
Java Iterative Stmts
ICSE 2008
37 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();
double sum = 0;
for (int i = 2; i <= 20; i = i + 3) {
sum += a / (double)i;
}
System.out.println("Sum=" + sum);
}
}
Variable Description Table
Program Explanation
Output
Answered By
16 Likes
Related Questions
Write the program to find the sum of the following series:
S = (a+1) + (a+2) + (a+3) + ……. + (a+n)
Write the program to find the sum of the following series:
S = a - a3 + a5 - a7 + ……. to n
Write the program to find the sum of the following series:
S = a + a2 + a3 + ……. + an
Write the program to find the sum of the following series:
S = (1/a) + (2/a2) + (3/a3) + ……. to n