#include #include char buffer[50]; int len; // nula!!! char mirror(char c) { switch (c) { case 'E': return '3'; case 'J': return 'L'; case 'L': return 'J'; case 'S': return '2'; case 'Z': return '5'; case '2': return 'S'; case '3': return 'E'; case '5': return '8'; case 'B': case 'C': case 'D': case 'F': case 'G': case 'K': case 'N': case 'P': case 'Q': case 'R': case '4': case '6': case '7': case '9': return '0'; } return c; } bool isPal() { for (int i=0; i