Javatpoint Logo
Javatpoint Logo

C++ Program to Find Factorial of a Number using Iteration

A mathematical procedure known as a factorial that determines the product of all positive integers from 1 to a specified number "n". In this article, you will see how to find factorial of a number using iteration in C++.

Understanding Factorial:

The product of all positive numbers less than or equal to a non-negative integer 'n' is its factorial, represented as 'n!'. It is frequently utilized in many combinatorial and mathematical computations. The base case for the factorial function is the factorial of 0, which has a definition of 1.

The following simple method can be used to iteratively compute the factorial of a given number:

  • Set the initial value of a variable, usually called "factorial", to 1 to store the outcome.
  • Make an iteration loop that goes from 1 to 'n', where 'n' is the number you wish to get the factorial for.
  • Multiply the current value of "factorial" by the loop counter for each iteration of the loop.
  • The factorial of 'n' will be in the 'factorial' variable once the loop has finished.

Example:

Let us take a C++ program to Find factorial of a Number using Iteration:

Output:

C++ Program to Find Factorial of a Number using Iteration





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA