题解 1042: [编程入门]电报加密

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

筛选

C语言 电报加密&

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define Long 80//允许输入字符串长度int main(){            v……

电报加密;

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){    string a;   whil……

C语言解决 加密问题

摘要:解题思路:超简单,利用ASCLL代码表,相邻字母间相差1个ASCLL值注意事项:利用了strlen函数,需要#include<string,h>参考代码:#include <stdio.h>#incl……

电 报 加 密

摘要: #include #include #include #include using namespace std; int main……

1042: [编程入门]电报加密

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() {     st……
优质题解

[编程入门]电报加密

摘要:解题思路:本题的解题关键是遇到字母如何输出其下一位字母,当遇到字母Z(z)时,输出a,形成这种循环的规律,该如何解决这个问题呢,可以通过取余来实现:通过式子(str[i]-96)%26+97  就可以……

1042: [编程入门]电报加密

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {     char ch;     while((ch=getchar())!=EOF){     ……