Advertisement
Josif_tepe

Untitled

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