Decode Caesar ciphers by aglias(rand)

main(i,r){for(r=r%24*.75-5;read(0,&i,1);write(1))i=islower(i)?97+(i-97-r)%26:isupper(i)?65+(i-65-r)%26:i;}

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

download

return to the top page