KnowledgeBoat Logo

Java Series Programs

Write Java program to find the sum of the given series:

1 + (1*2) + (1*2*3) + ………. + (1*2*3* …… * n)

Java

Java Nested for Loops

ICSE

33 Likes

Answer

import java.util.Scanner;

public class KboatSeriesSum
{
    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++) {
            int p = 1;
            for (int j = 1; j <= i; j++) {
                p *= j;
            }
            sum += p;
        }
        System.out.println("Sum=" + sum);
    }
}

Output

BlueJ output of Write Java program to find the sum of the given series: 1 + (1*2) + (1*2*3) + ………. + (1*2*3* …… * n)

Answered By

15 Likes