//mencari nilai faktorial
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
int b=1, a;
long tot=1;
cout<<"masukkan nilai yang ingin di faktorialkan = ";
cin>>a;
while (b<=a)
{
tot=tot*b;
b=b+1;
}
cout<
system("PAUSE");
return EXIT_SUCCESS;
}
0 komentar:
Posting Komentar