Advertisement
Josif_tepe

Untitled

Dec 2nd, 2023
549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. using namespace std;
  5.  
  6.  
  7. int main()
  8. {
  9. int n;
  10. cin>>n;
  11. int proizvod=1;
  12. for(int i=1;i<=n;i++){
  13.     proizvod*=i;
  14. }
  15.     cout<<proizvod<<endl;
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement