Series Pattern Program for 1! + 2! + 3! + 4! + 5! + … + n!
This article discusses, how to write a prorgram to solve 1! + 2! + 3! + 4! + 5! + … + n! series in python, C, C++ and Java.
Problem Definition
Write a prorgram to solve 1! + 2! + 3! + 4! + 5! + … + n! series in python, C, C++ and Java.
Sample input and Output:
Enter the value of n: 5 Sum is: 123
Source code to solve the series 1! + 2! + 3! + 4! + 5! + … + n! in python
sum = 0 n = int (input("Enter the value of n:")) for i in range(1,n+1): fact = 1 for j in range(1, i+1): fact = fact * j sum = sum + fact print ("Sum is: ", sum)
Source code to solve the series 1! + 2! + 3! + 4! + 5! + … + n! in C
#include <stdio.h> int main() { int i, j, n, sum = 0, fact; printf("Enter the value of n:"); scanf("%d", &n); for(i=1; i<=n; i++) { fact = 1; for (j = 1; j <= i; j++) { fact = fact * j; } sum = sum + fact; } printf("Sum is: %d", sum); return 0; }
Source code to solve the series 1! + 2! + 3! + 4! + 5! + … + n! in CPP (C++)
#include <iostream> using namespace std; int main() { int i, j, n, sum = 0, fact; cout <<"Enter the value of n:"; cin >> n; for(i=1; i<=n; i++) { fact = 1; for (j = 1; j <= i; j++) { fact = fact * j; } sum = sum + fact; } cout << "Sum is: "<< sum; return 0; }
Source code to solve the series 1! + 2! + 3! + 4! + 5! + … + n! in Java
import java.util.Scanner; class Series4 { private static Scanner scan; public static void main(String[] args) { int i, j, n, sum = 0, fact; scan = new Scanner(System.in); System.out.println("Enter the value of n:"); n = scan.nextInt(); for(i=1;i<=n;i++) { fact = 1; for (j = 1; j <= i; j++) { fact = fact * j; } sum = sum + fact; } System.out.print("Sum: " + sum); } }
Find Frequently asked Pattern Programs in the interview on:
Star Pattern Programs in Python, C, C++ (CPP) and Java
Series Pattern programs in Python, C, C++ (CPP) and Java
Number / Numeric Pattern programs in Python, C, C++ (CPP) and Java
Alphabet / Character Pattern programs in Python, C, C++ (CPP) and Java
This article discusses, how to write a program to display Series Pattern 1! + 2! + 3! + 4! + 5! + … + n! in Python, C, CPP (C++), and Java programming language with the video tutorials.
Subscribe to our YouTube channel for more videos and like the Facebook page for regular updates.