spacerose

факториал

Dec 18th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     int f=1;
  7.     cin>>x;
  8.     if (x==0) f=0;
  9.     else{
  10.     while (x>1){
  11.         f*=x;
  12.         x--;
  13.     }
  14.     }
  15.     cout<<f;
  16. }
Add Comment
Please, Sign In to add comment