Count of circles in a number aka 2581 by smkt method2

main(z,t,k){char n[64];while(gets(n)){t=0;for(z=0;n[z];)k=n[z++]-48,!k|k==6|k==9?t++:k==8?t+=2:0;printf("%d\n",t);}}

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

download

return to the top page