最近要准备某个考试,没时间更了,只能大概写一下了。这个新手可能不好理解,但是我希望大家都能理解。Orz,我将埃特巴什码的加解密分成了三步。
1、单个字母的加解密(仅能处理小写)
#include<stdio.h> //标准输入输出头文件,没有它就无法使用scanf和printf
int main(){
char c;
scanf("%c",&c);
printf("%c",'z'-(c-'a')); //理解这里的ACSII码
return 0;
}
2、单个字母的加解密(能处理大小写)
#include<stdio.h>
#include<ctype.h> //tolower函数将字符全部转换为小写
int main(){
char c;
scanf("%c",&c);
printf("%c",'z'-(tolower(c)-'a'));
return 0;
}
3、字符串的加解密处理
#include<stdio.h>
#include<ctype.h>
int main(){
int i=0;
char c[100];
scanf("%s",c);
while(c[i]!='\0'){ // 考虑为什么是\0
printf("%c",'z'-(tolower(c[i])-'a'));
i++;
}
return 0;
}