Skip to content

Instantly share code, notes, and snippets.

@joshuapack
Last active August 1, 2022 20:40
Show Gist options
  • Save joshuapack/0a7855936d0446ed570f to your computer and use it in GitHub Desktop.
Save joshuapack/0a7855936d0446ed570f to your computer and use it in GitHub Desktop.
<?php
for ($i=1;$i <= 100; $i++) {
if ($i % 3 === 0) echo 'Fizz';
if ($i % 5 === 0) echo 'Buzz';
if ($i % 5 > 0 && $i % 3 > 0) echo $i;
echo '<br/>';
}
@joshuapack
Copy link
Author

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".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment