Skip to content

Instantly share code, notes, and snippets.

@cubapp
Created August 28, 2017 08:51
Show Gist options
  • Save cubapp/b5622813001be9ae0caa1d2ac9fcc896 to your computer and use it in GitHub Desktop.
Save cubapp/b5622813001be9ae0caa1d2ac9fcc896 to your computer and use it in GitHub Desktop.
FizzBuZZ the C way - inspired by http://codepad.org/fizzbuzz
#include <stdio.h>
int main(void)
{
int i;
for(i=1; i<=100; i++)
(i%15)?(i%5)?(i%3)?printf("%d\n",i):printf("Fizz\n"):printf("Buzz\n"):printf("FizzBuzz\n");
return 0;
}
@hiyorikotobuki
Copy link

its so perfect

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment