FizzFizz by amama

f(s,d){s%d||printf(d-3?"Buzz":"Fizz")&&f(s/d,d);}
a,i;main(s){for(;i++<100;)printf(i%3&&i%5?"%d\n":"\n",i,f(i,5,f(i,3)));}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page