Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Last active March 5, 2017 05:07
Show Gist options
  • Select an option

  • Save takoikatakotako/82786f56c79ee0935b29c24c14b797a9 to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/82786f56c79ee0935b29c24c14b797a9 to your computer and use it in GitHub Desktop.
FizzBizzをCで解いた。
#include <stdio.h>
int main(void){
int i;
for(i=0;i<20;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