Created
March 6, 2012 15:00
-
-
Save taytus/1986692 to your computer and use it in GitHub Desktop.
FizzBuzz solution in PHP
This file contains hidden or 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
for ($i = 1; $i <= 100; $i++) | |
{ | |
if($i % 3 == 0 && $i % 5 ==0){ | |
echo "FizzBuzz<br />"; | |
} | |
else if($i % 3 == 0){ | |
echo "Fizz<br />"; | |
} | |
else if($i % 5 == 0){ | |
echo "Buzz<br />"; | |
} | |
else { | |
echo $i."<br />"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment