#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int num;
cout<<" Factorial Program"<<endl;
cout<<endl;
cout<<"Enter a number : ";
cin>>num;
int fact=1;
for (int i=1;i<=num;i++)
{
fact=fact*i;
}
cout<<"Factorial of "<<+num<<" is :"<<fact;
getch();
}
Jinson Jacob -3 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.