Created
June 21, 2012 19:56
-
-
Save masayukig/2968149 to your computer and use it in GitHub Desktop.
Fizz Buzz in C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main(int i){for(;i<101;i++)printf("%s%s%.0d\n",i%3?"":"Fizz",i%5?"":"Buzz",i%3*i%5?i:0);} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment