Programming Examples

Cpp program to find the factorial of a number


Write a program in C++ to find the factorial of a number.

Solution

#include<iostream>
using namespace std;
int main(){
     int num,fact=1;
    cout<<"Enter any number to find it's factorial"<<endl;
    cin>>num;
    for(int a=1;a<=num;a++)
    {
          fact=fact*a;
    }
    cout<<"The factorial of "<<num<<"is "<<fact;
     return 0;
}
Output

Enter any number to find it's factorial

5

The factorial of 5 is 120

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad