Advertisement
tei123

gierka xd xd xd xd

May 13th, 2016
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link href="style.css" rel="stylesheef" type="text/css"/>
  4. </head>
  5. <body bgcolor="yellow">
  6. <script>
  7.  
  8. var i;
  9. var b;
  10. var c;
  11. var max = 1000;
  12. var min = 0;
  13. c = Math.floor(Math.random()*1001);
  14. alert(c)
  15. b = prompt("Zgadnij liczbe z zakresu od 0 do 1000: ");
  16.  
  17.  
  18. do
  19. {
  20. if (b>c)
  21. {
  22. alert("Nie zgadles!");
  23. max=b;
  24. b = prompt("Zgadnij liczbe z zakresu od " + min + " do " + max );
  25. }
  26.  
  27. if (b<c)
  28. {
  29. alert("Nie zgadles!");
  30. min=b;
  31. b = prompt("Zgadnij liczbe z zakresu od " + min + " do " + max );
  32. }
  33.  
  34.  
  35.  
  36. }
  37. while (b!=c);
  38.  
  39. if (b==c)
  40. {
  41. alert("zgadles!");
  42. }
  43.  
  44.  
  45.  
  46.  
  47. </script>
  48.  
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement