Write a C++ program to find factorial of a given number.Answer :File Name : C.cpp#include<iostream>using namespace std;int a,i,fact=1;int main(){ cout<<"Enter Number : "; cin>>a; for(i=a; i>=1; i--) fact = fact * i ; cout<<"Factorial of Given Number is : "<<fact<<endl; return 0;}
No comments:
Post a Comment