Skip to content

Instantly share code, notes, and snippets.

@pwlin
Created June 13, 2010 16:45
Show Gist options
  • Save pwlin/436797 to your computer and use it in GitHub Desktop.
Save pwlin/436797 to your computer and use it in GitHub Desktop.
FizzBuzz
<?php
// FizzBuzz
for ($i = 1; $i <= 100; $i++)
{
if ($i % 15 == 0)
print "FizzBuzz";
elseif ($i % 3 == 0)
print "Fizz";
elseif ($i % 5 == 0)
print "Buzz";
else
print $i;
print "\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment