Skip to content

Instantly share code, notes, and snippets.

@VijayaSankarN
Created January 9, 2019 09:02
Show Gist options
  • Save VijayaSankarN/20bf8a220141bb2b0564d060d9d448a8 to your computer and use it in GitHub Desktop.
Save VijayaSankarN/20bf8a220141bb2b0564d060d9d448a8 to your computer and use it in GitHub Desktop.
Fizz Buzz Test
for($i=1;$i<100;$i++) {
echo ($i%3?'':'Fizz').($i%5?'':'Buzz')?:$i,"<br/>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment