char*crypt(char*a ,int step){//此段代码只对大写字母的部分进行加密。其他部分不变 for(char*p=a;*p!=0;p++) {if(*p>='A'&&*p<='Z')*p=(*p-'A'+step)%26+'A';} return a; }