
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
C++ Program to Find Factorial of a Number using Iteration
Factorial of a non-negative integer n is the product of all the positive integers that are less than or equal to n.
For example: The factorial of 6 is 720.
6! = 6 * 5 * 4 * 3 * 2 *1 6! = 720
The factorial of an integer can be found using a recursive program or an iterative program.
A for loop can be used to find the factorial of a number using an iterative program. This is demonstrated as follows.
Example
#include <iostream> using namespace std; int main() { int n = 6, fact = 1, i; for(i=1; i<=n; i++) fact = fact * i; cout<<"Factorial of "<< n <<" is "<<fact; return 0; }
Output
Factorial of 6 is 720
In the above program, the for loop runs from 1 to n. For each iteration of the loop, fact is multiplied with i. The final value of fact is the product of all numbers from 1 to n. This is demonstrated using the following code snippet.
for(i=1; i<=n; i++) fact = fact * i;
- Related Articles
- C++ Program to Find Factorial of a Number using Recursion
- Java Program to Find Factorial of a Number Using Recursion
- Haskell Program to Find Factorial of a Number Using Recursion
- C++ Program to Find Factorial of a Number using Dynamic Programming
- Java Program to Find Factorial of a number
- Swift Program to Find Factorial of a number
- Kotlin Program to Find Factorial of a number
- Java program to find the factorial of a given number using recursion
- 8085 program to find the factorial of a number
- 8086 program to find the factorial of a number
- Python program to find factorial of a large number
- Write a Golang program to find the factorial of a given number (Using Recursion)
- C++ program to Calculate Factorial of a Number Using Recursion
- Haskell Program To Find The Factorial Of A Positive Number
- How to Find the Factorial of a Number using Python?

Advertisements