Guest User

Untitled

a guest
Oct 1st, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Калькулятор</title>
  6. </head>
  7. <body>
  8. <script type="text/javascript">
  9. var a,b,c,pass, d;
  10. a = Number(prompt("a="));
  11. b = Number(prompt("b="));
  12. pass = 1111;
  13. alert("enter pass");
  14. d = 1;
  15. while (d == 1){
  16. c = Number(prompt("pass"));
  17. if (c == pass){
  18. if (a == b)
  19. alert ("equal")
  20. else
  21. if (a>b)
  22. alert (a + " is bigger")
  23. else
  24. alert (b + " is bigger");
  25. }
  26. else alert("wrong pass");
  27. d = confirm("again?");
  28. if (!d)
  29. alert ("ok");
  30. }
  31. </script>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment