#include <stdio.h> int main() { char ch; while (1) { ch=getchar(); //依次读取输入的字符串 if (ch>=65 && ch<90) { ch=ch+32+1; }else if (ch==90) { //z作为特殊情况特殊处理 ch=ch+7; }else if (ch=='a'||ch=='b'||ch=='c') { ch='2'; }else if (ch=='d'||ch=='e'||ch=='f') { ch='3'; }else if (ch=='g'||ch=='h'||...