Computer Applications
Write a program in Java to find the sum of the given series:
S = 1! + 2! + 3! + …. + n!
Java
Java Nested for Loops
51 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 n: ");
int n = in.nextInt();
long sum = 0;
for (int i = 1; i <= n; i++) {
long f = 1;
for (int j = 1; j <= i; j++) {
f *= j;
}
sum += f;
}
System.out.println("Sum = " + sum);
}
}
Output
Answered By
21 Likes