Skip to content

Instantly share code, notes, and snippets.

@shimadama
Created July 26, 2018 04:30
Show Gist options
  • Select an option

  • Save shimadama/6dbf75282ef5b7c127bed67e2c46bbd3 to your computer and use it in GitHub Desktop.

Select an option

Save shimadama/6dbf75282ef5b7c127bed67e2c46bbd3 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
int i;
for (i = 1; i <= 100; 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;
}
# coding: utf-8
CC = "gcc"
desc "clang fizzbuzz"
task :default => "fizzbuzz"
file "fizzbuzz" => "fizzbuzz.o" do
sh "#{CC} -o fizzbuzz fizzbuzz.o"
end
file "fizzbuzz.o" => "fizzbuzz.c" do
sh "#{CC} -c fizzbuzz.c"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment