Commit 630a909b authored by nagayama15's avatar nagayama15

.gitignoreの間違いを修正

parent 2fb3337d
#include <stdio.h>
int main(void)
{
int i;
for (i = 1; i <= 50; i++)
{
if (i % (3 * 5) == 0)
printf("Fizz Buzz\n");
else if (i % 3 == 0)
printf("Fizz\n");
else if (i % 5 == 0)
printf("Buzz\n");
else
printf("%d\n", i);
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment