电码加密

冷暖自知 提交于 2019-11-26 07:00:52

#include<stdio.h>
#define max 100
void encrypt(char *);
int main(){
char line[max]={‘0’};
printf(“please input string:”);
gets(line);
encrypt(line);
printf("\n");
printf(“output encrypted:%s\n”,line);
return 0;
}
void encrypt(char *s){
for(;*s!=’\0’;s++){
if(*s==‘z’)
*s=‘a’;
else
*s+=1;
}
}

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!