Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <script>
  5. function show(){
  6.  
  7. var i, no, fact;
  8. fact=1;
  9. no=Number(document.getElementById("num").value);
  10. for(i=1; i<=no; i++)
  11. {
  12. fact= fact*i;
  13. }
  14. document.getElementById("answer").value= fact;
  15. }
  16. </script>
  17. </head>
  18. <body>
  19. Enter Num: <input id="num">
  20. <button onclick="show()">Factorial</button>
  21. <input id="answer">
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement