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

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

筛选

不难不难循环加判断

摘要:解题思路:注意事项:kan了题解也终于是会写了,忘记python本身输入就是字符串,之前也写过转换字符串chr he  ord两个函数都忘记了参考代码:x=input()s=""for i in x:……

电报加密,C语言解析

摘要:解题思路:1.使用gets函数来输入字符串2.写一个函数进行字符变换。因为A的ACSII码是65,B的ASCII值是66,a的ASCII码是97,b的ASCII值是98,从A到Z,和从a到z的ASCI……

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

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

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

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

电 报 加 密

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

电报加密;

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

C语言 电报加密&

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