Created
January 14, 2014 22:07
-
-
Save schierbeck/8426799 to your computer and use it in GitHub Desktop.
FizzBuzz example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
for($i = 1; $i < 101; $i++) { | |
if( $i % 3 == 0 ) { | |
echo 'Fizz'; | |
$fb = true; | |
} | |
if( $i % 5 == 0 ) { | |
echo 'Buzz'; | |
$fb = true; | |
} | |
if( !($i % 3 === 0) && !($i % 5 === 0)) { | |
echo $i; | |
} | |
echo '<br>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment