FizzBuzz(C)
FizzBuzzをCで解きました。 いろいろな言語で FizzBuzz を作ってみると違いが出て面白いですね。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; | |
} |