4ed821f1ae
had to use the printf statements inside because char* and int can't be displayed with same %-label thing
8 lines
213 B
C
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);
|
|
}
|