[编程入门]电报加密 题解 摘要:解题思路:运用了ASCII里的位置就可以做出此题。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){…… 题解列表 2022年05月06日 0 点赞 0 评论 248 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char a[100]; get…… 题解列表 2022年05月07日 0 点赞 0 评论 174 浏览 评分:0.0
不难不难循环加判断 摘要:解题思路:注意事项:kan了题解也终于是会写了,忘记python本身输入就是字符串,之前也写过转换字符串chr he ord两个函数都忘记了参考代码:x=input()s=""for i in x:…… 题解列表 2022年05月11日 0 点赞 0 评论 191 浏览 评分:0.0
电报加密数组函数传值指针处理 摘要:#include char dd(char a[]) { while(*a!='\0') { if((*a>='a'&&*a='A'&&*a…… 题解列表 2022年05月11日 0 点赞 0 评论 195 浏览 评分:0.0
main函数内利用数组进行电报加密 摘要:#include #include int main() { int i,j; char a[1000]; gets(a); i=strlen(a); for(j=0;j…… 题解列表 2022年05月11日 0 点赞 0 评论 205 浏览 评分:0.0
电报加密,C语言解析 摘要:解题思路:1.使用gets函数来输入字符串2.写一个函数进行字符变换。因为A的ACSII码是65,B的ASCII值是66,a的ASCII码是97,b的ASCII值是98,从A到Z,和从a到z的ASCI…… 题解列表 2022年06月09日 0 点赞 0 评论 337 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char ch; while((ch=getchar())!=EOF){ …… 题解列表 2022年06月14日 0 点赞 0 评论 145 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 201 浏览 评分:0.0
电 报 加 密 摘要: #include #include #include #include using namespace std; int main…… 题解列表 2022年10月12日 0 点赞 0 评论 150 浏览 评分:0.0
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 214 浏览 评分:0.0