赞
踩
题目:
假设渊子原来一个BBS上的密码为zvbo9441987,为了方便记忆,他通过一种算法把这个密码变换成YUANzhi1987,这个密码是他的名字和出生年份,怎么忘都忘不了,而且可以明目张胆地放在显眼的地方而不被别人知道真正的密码。
他是这么变换的,大家都知道手机上的字母: 1--1, abc--2, def--3, ghi--4, jkl--5, mno--6, pqrs--7, tuv--8 wxyz--9, 0--0,就这么简单,渊子把密码中出现的小写字母都变成对应的数字,数字和其他的符号都不做变换,
声明:密码中没有空格,而密码中出现的大写字母则变成小写之后往后移一位,如:X,先变成小写,再往后移一位,不就是y了嘛,简单吧。记住,z往后移是a哦。
- #include<iostream>
- #include<string>
- #include<string.h>
- using namespace std;
-
- int main()
- {
- char str[1000];
- char output[1000];
- while(cin>>str)
- {
- int len = strlen(str);
- for(int i=0; i<=len; i++) // 为什么有“=”??
- {
- if(str[i]>='a'&&str[i]<='c')
- output[i] = '2';
- else if(str[i]>='d'&&str[i]<='f')
- output[i] = '3';
- else if(str[i]>='g'&&str[i]<='i')
- output[i] = '4';
- else if(str[i]>='j'&&str[i]<='l')
- output[i] = '5';
- else if(str[i]>='m'&&str[i]<='o')
- output[i] = '6';
- else if(str[i]>='p'&&str[i]<='s')
- output[i] = '7';
- else if(str[i]>='t'&&str[i]<='v')
- output[i] = '8';
- else if(str[i]>='w'&&str[i]<='z')
- output[i] = '9';
- else if(str[i]>='A'&&str[i]<='Y')
- output[i] = str[i] -('A'-'a')+1;
- else if(str[i]=='Z')
- output[i] = 'a';
- else
- output[i] = str[i];
- }
- printf("%s\n", output);
- str[1000] = {'\0'};
- output[1000] = {'\0'};
- }
- return 0;
- }
-
参考:https://www.nowcoder.com/profile/136407689/codeBookDetail?submissionId=92226307
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。