#include <iostream.h>
#include <conio.h>
main()
{
int x,n,jumlah=1;
cout<<"\t\tMENCARI FAKTORIAL\n";
cout<<"input angka = ";cin>>n;
for(x=n;x>=1;x--)
{
jumlah=jumlah*x;
cout<<endl<<x<<" deret factorial";
}
cout<<"\n\nJadi "<<n<<"! adalah = "<<jumlah;
getch();
}
0 comments:
Post a Comment