Skip to content

Instantly share code, notes, and snippets.

@MySoftwareNotes
Created February 25, 2020 15:30
Show Gist options
  • Save MySoftwareNotes/e174e2678d74f2eac4ca488c6a1dde3a to your computer and use it in GitHub Desktop.
Save MySoftwareNotes/e174e2678d74f2eac4ca488c6a1dde3a to your computer and use it in GitHub Desktop.
#include<iostream.h>
#include<conio.h>
class Temp{
public:
Fact()
{
int num,fact=1;
cout<<"Enter the number to find out Factorial! ";
cin>>num;
for(int i=num;i>0;i--)
fact=fact*i;
cout<<"Factorial is "<<fact;
}
};
void main()
{
Temp obj;
obj.Fact();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment