Created
January 17, 2020 18:03
-
-
Save ugochukwu95/d1e4ff250efa8751399128eb0a61a142 to your computer and use it in GitHub Desktop.
Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.
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
<?php | |
for ($i=1; $i <= 100; $i++) { | |
if ((($i % 3) == 0) && (($i % 5) == 0)) { | |
echo "FizzBuzz\n"; | |
continue; | |
} | |
elseif (($i % 3) == 0) { | |
echo "Fizz\n"; | |
continue; | |
} | |
elseif (($i % 5) == 0) { | |
echo "Buzz\n"; | |
continue; | |
} | |
else { | |
echo $i . "\n"; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment