Advertisement
Guest User

Untitled

a guest
May 27th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6. <h1>Despasito</h1>
  7.  
  8. <script>
  9.  
  10. var n = prompt("Podaj n:");
  11.  
  12. essa = 1;
  13. while (n > 0)
  14. {
  15. essa = essa * n ;
  16. n-- ;
  17. }
  18. document.write(essa);
  19.  
  20. </script>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement