Skip to content

Instantly share code, notes, and snippets.

@ajnadel
Created February 12, 2015 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajnadel/c371ac179221b77842c2 to your computer and use it in GitHub Desktop.
Save ajnadel/c371ac179221b77842c2 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
for (int i = 0; i < 100; i++){
if (i % 15 == 0) {
printf("FizzBuzz\n");
} else if (i % 3 == 0){
printf("Fizz\n");
} else if (i % 5 == 0){
printf("Buzz\n");
} else{
printf("%i\n", i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment