mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
23 lines
533 B
C
23 lines
533 B
C
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
int length;
|
|
scanf("%d", &length);
|
|
for (int number = 1; number <= length; number++) {
|
|
bool is_divisible_by_3 = number % 3 == 0;
|
|
bool is_divisible_by_5 = number % 5 == 0;
|
|
if (is_divisible_by_3 && is_divisible_by_5) {
|
|
printf("FizzBuzz\n");
|
|
} else if (is_divisible_by_3) {
|
|
printf("Fizz\n");
|
|
} else if (is_divisible_by_5) {
|
|
printf("Buzz\n");
|
|
} else {
|
|
printf("%d\n", number);
|
|
}
|
|
}
|
|
return EXIT_SUCCESS;
|
|
}
|