Skip to content

Instantly share code, notes, and snippets.

@kalinathalie
Created October 8, 2015 03:15
Show Gist options
  • Select an option

  • Save kalinathalie/d581e1e5143dfe1b6502 to your computer and use it in GitHub Desktop.

Select an option

Save kalinathalie/d581e1e5143dfe1b6502 to your computer and use it in GitHub Desktop.
FizzBuzz em C
#include <stdio.h>
int main() {
int N, i;
scanf("%d", &N);
for(i=1;i<N;i++){
if(i%3==0 && i%5!=0)printf("Fizz\n");
else if(i%5==0 && i%3!=0)printf("Buzz\n");
else if(i%15==0)printf("FizzBuzz\n");
else printf("%d\n", i);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment