Skip to content

Instantly share code, notes, and snippets.

@AnnaOpss
Created September 4, 2013 00:55
Show Gist options
  • Save AnnaOpss/6431558 to your computer and use it in GitHub Desktop.
Save AnnaOpss/6431558 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#define MAX 100
int main (int argc, char* argv[])
{
int i;
for (i=1; i<=MAX; i++) {
if (i%3 == 0 && i%5==0)
printf ("FizzBuzz\n");
else
if (i%3 == 0)
printf ("Fizz\n");
else
if (i%5 == 0)
printf ("Buzz\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