Skip to content

Instantly share code, notes, and snippets.

@kobaken0029
Last active April 22, 2016 01:34
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 kobaken0029/3fc3b992f296b68d5c5acaf62d75af69 to your computer and use it in GitHub Desktop.
Save kobaken0029/3fc3b992f296b68d5c5acaf62d75af69 to your computer and use it in GitHub Desktop.
phpでワンライナーfizzbuzz
<?php foreach(range(1,100)as$i){echo($i%5&&$i%3?$i:'').($i%5?'':'fizz').($i%3?'':'buzz')."\n";}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment