Skip to content

Instantly share code, notes, and snippets.

@pstengel
Created April 4, 2011 14:30
Show Gist options
  • Save pstengel/901730 to your computer and use it in GitHub Desktop.
Save pstengel/901730 to your computer and use it in GitHub Desktop.
Mazzi's test.
<?php
for ($i = 1; $i <= 100; $i++) {
if (($i % 3) == 0 && ($i % 5) == 0) {
print "FizzBuzz\n";
} elseif (($i % 3) == 0) {
print "Fizz\n";
} elseif (($i % 5) == 0) {
print "Buzz\n";
} else {
print "$i\n";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment