forked from Sergio0694/FizzBuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfizzbuzz.c
More file actions
26 lines (24 loc) · 733 Bytes
/
fizzbuzz.c
File metadata and controls
26 lines (24 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
* FizzBuzz Implementation in C
* The Sharp Ninja - October 20, 2019
*
* "Write a program that prints the numbers from 1 to 100. But for multiples of three print
* “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which
* are multiples of both three and five print “FizzBuzz”."
*/
#include <stdio.h>
int main()
{
char snum[4];
for (int i = 1; i <= 100; ++i)
{
snprintf(snum, 3, "%d", i);
printf("%s\n", i % 3 == 0
? i % 5 == 0
? "FizzBuzz"
: "Fizz"
: i % 5 == 0
? "Buzz"
: snum);
}
}