Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Last active June 9, 2019 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flaviors200/242eee93e717c2827805e69182ed2007 to your computer and use it in GitHub Desktop.
Save flaviors200/242eee93e717c2827805e69182ed2007 to your computer and use it in GitHub Desktop.
Loop statements: do-while
<?php
$attempts = 1;
do {
$coinFlip = random_int(0,1); // 0 testa 1 croce
echo "Lancio n. $attempts: $coinFlip\n";
$attempts--;
} while ($attempts < 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment