Advertisement
Rayne_47

rzut monetą

Oct 7th, 2013
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var x=Math.random();
  2. console.log(x);
  3. if(x<=0.5) {
  4.     console.log("wypadł orzeł");
  5.     x=Math.random();
  6.     console.log(x);
  7.     if(x<=0.5){
  8.         console.log("wypadł orzeł");
  9.     }
  10.     else {
  11.         console.log("wypadła reszka");
  12.     }
  13. }
  14. else {
  15.     console.log("wypadła reszka");
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement