挺有趣
但写的时候感觉到很变态的题目
思路就是建立两个字符数组保存对应的密码表
这样每一个字符只需要查找在其中一个表的位置
其对应的密码就是另一个表中对应位置的字符
需要注意的是如双引号单引号这种保存时要记得用转义字符
还有就是写的时候数好位数
不要在这种小细节上GG
#include<stdio.h>
#include<string.h>
char s1[100]= {"_+-=QWEqweRTYUIOPrtyuiop{}[]SDFGHJKLsdfghjkl:\";\'ZXCVBNzxcvbn<>?,./"};
char s2[100]= {"{}[]\"<>\',.PYFGCRLpyfgcrl?+/=OEUIDHTNoeuidhtnS_s-:QJKXB;qjkxbWVZwvz"};
int find(char c) {
int i=0;
while(c!=s1[i])
i++;
return i;
}
char s[1000000];
int main() {
while(gets(s)!=NULL) {
int l=strlen(s);
for(int i=0; i<l; i++) {
if(find(s[i])>65)
printf("%c",s[i]);
else
printf("%c",s2[find(s[i])]);
}
printf("\n");
}
return 0;
}