fork download
  1. <?php
  2.  
  3. if (isset($aktualny_portfel))
  4. $portfel = $aktualny_portfel;
  5. else
  6. {
  7. $portfel = 10;
  8. $aktualny_portfel = $portfel;
  9. }
  10.  
  11. while($portfel >0)
  12. {
  13. $wygrana= rand(0,1);
  14. if($wygrana)
  15. {
  16. $portfel += 10;
  17. $aktualny_portfel += $portfel;
  18. }
  19.  
  20. if($portfel%3<3)
  21. break;
  22.  
  23. }
  24. echo $aktualny_portfel;
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
30