Write a Java Program to find the sum of the following series:
1!/x+3!/x+5!/x....n terms
(With java.io. package)
Answers
Answered by
14
OUTPUT:
PROGRAMME in Java to find the sum of the given series:
S = 12/a + 32 / a2 + 52 / a3 + …… to n terms :)
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);
}
}
Attachments:
Answered by
2
Answer:
Category Wind Speed (mph)
1 74 - 95
2 96 - 110
3 111 - 130
4
Similar questions