Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <meta charset="utf-8">
  2. <script>
  3.  
  4. var n =0;
  5. do {
  6. alert('Раундов сыграно:' + n + ' Продолжам играть');
  7. n++;
  8. if ((Math.random () *6) <1) {
  9. break;
  10. }
  11.  
  12. } while (true)
  13.  
  14. alert('ПОТРАЧЕНО. Раундов сыграно: ' + n);
  15.  
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement