5.4 Figure 5.7 Function to Compute Factorial
#include <cstdlib>
#include <iostream>
using namespace std;
int faktorial(int n) {
int i, product=1;
for (i=n; i>1; --i) {
product=product*i;
}
return product;
}
int main(int argc, char *argv[])
{
int n;
cout<<"Masukkan nilai= ";
cin>> n ;
cout<< faktorial(n) ;
system("PAUSE");
return EXIT_SUCCESS;
}
RUN
Tugas Kelompok ebook chapter 5 Alpro
| Judul | : | Tugas Kelompok ebook chapter 5 Alpro |
| Url | : | https://fiqriany1300018072.blogspot.com/2014/03/tugas-kelompok-ebook-chapter-5-alpro_6299.html |
| Pada | : | Senin, 24 Maret 2014 |
| Oleh | : | Unknown |
| Respond | : | 0 |
| Share | : |
Langganan:
Posting Komentar (Atom)

0 komentar:
Posting Komentar