Created
June 9, 2015 13:02
-
-
Save nahakiole/f3111c7302e8e5788e52 to your computer and use it in GitHub Desktop.
Fizzbuzz in C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(){ | |
for (int i = 0; i<100; i++){ | |
if (i % 15 == 0){ | |
printf("FizzBuzz\n"); | |
} | |
else if (i % 5 == 0){ | |
printf("Fizz\n"); | |
} | |
else if (i % 3 == 0){ | |
printf("Buzz\n"); | |
} | |
else { | |
printf("%d\n", i); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment