document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.   cout << "===  Menghitung Faktorial C++ ===" << endl;
  8.  
  9.   int faktorial, i;
  10.  
  11.   cout << endl;
  12.   cout << "Masukkan angka : ";
  13.   cin >> faktorial;
  14.  
  15.   int hitung = 1;
  16.   for(i=1;i<=faktorial;i++) {
  17.     hitung = hitung * i;
  18.   }
  19.   cout << faktorial << "! = " << hitung;
  20.   cout << endl;
  21. }
');