Skip to content

Instantly share code, notes, and snippets.

@tenkoma
Created January 22, 2011 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tenkoma/791302 to your computer and use it in GitHub Desktop.
Save tenkoma/791302 to your computer and use it in GitHub Desktop.
FizzBuzz Program written in PHP
<?php foreach(range(1,100)as$i){$s=($i%3<1?'Fizz':'').($i%5<1?'Buzz':'');echo($s?$s:$i)."\n";}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment