Guest User

Untitled

a guest
Dec 18th, 2021
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  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. }
Add Comment
Please, Sign In to add comment