题解 1244: 破解简单密码

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

破解简单密码 (C语言代码)

摘要:解题思路:遍历每个元素  转换成对应密码注意事项:最后Z的处理需要单独拿出参考代码:#include <stdio.h>#include<string.h>int main(){int i,l;cha……

破解简单密码 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string a; while(cin>……

破解简单密码 (Java代码)

摘要:解题思路:注意事项:参考代码: import java.math.BigInteger; import java.util.*; import java.util.regex.Matcher; ……

破解简单密码 (C语言代码)

摘要:解题思路:    按要求遍历整个字符串即可。参考代码:#include <stdio.h> int main()  { char s[105]; while(scanf("%s",s)!=……

破解简单密码 (C语言代码)

摘要:解题思路:每日一水注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[150]; while(gets(a)){  ch……

破解简单密码-题解(C++代码)

摘要: 根据题目输入的小写字母换成数字,大小字母换成小写字母加1(注意Z是变成a),其他字符原样输出即可; #include #include #include ……