ASCII value even or odd by smkt

#include<iostream>\x0d
main(){char c;while(std::cin.get(c))if(c>10)std::cout<<(c%2?'O':'E');}

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

download

return to the top page