leap year by tensaix2j

main(i,c){while(gets(c))printf("%s is %sa leap year.\n",c,(i=atoi(c))%400&&!(i%100)||i%4?"not ":"");}

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

download

return to the top page