Skip to content

Instantly share code, notes, and snippets.

@tao-s
Created January 23, 2015 20:33
Show Gist options
  • Save tao-s/88f5fbb70dff0e3aa295 to your computer and use it in GitHub Desktop.
Save tao-s/88f5fbb70dff0e3aa295 to your computer and use it in GitHub Desktop.
Fizz Buzz 問題
<?php
for($i=1;$i<=100;$i++){
if(($i%3)==0){
echo "Fizz";
}
if(($i%5)==0){
echo "Buzz";
}elseif(($i%3)>0){
echo $i;
}
echo "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment