输入密码电文(以句号结尾)按下列规律破译后输出;
数字0,1,2,...9分别由A,B,C,...,J代换;
小写英文字母k,m,p,t,y分别由其下一个后继字母代换;
大写英文字母U,W,R,Z分别由其上一个前导字母代换;
其它字母、符号及空格保持不变。 char c; do { c = getch();
if(c == '.'){break;} if(c >= '0'&& c<='9'){c = 'A' + (c - '0');}
else if ((c == 'k')||(c=='m')||(c=='p')||(c=='t')||(c=='y')){c = c + 1;}
else if((c=='U')||(c=='W')||(c=='R')||(c=='Z')){ c= c-1;}
printf("%c",c); }while(1); printf("\n");