Misc-small-projects/FizzBuzzTernary.c
Daniel Løvbrøtte Olsen 4ed821f1ae Uploaded FizzBuzz Implementation with Ternary
had to use the printf statements  inside because char* and  int can't be displayed with same %-label thing
2015-08-27 22:51:38 +02:00

8 lines
213 B
C

#include <stdio.h>
int main(void)
{
for(int i = 0; i < 100; i++)
i % 3 == 0 && i % 5 == 0 ? printf("FizzBuzz\n") : i % 3 == 0 ? printf("Fizz\n") : i % 5 == 0 ? printf("Buzz\n") : printf("%i\n", i);
}