1042: [编程入门]电报加密(c语言代码超简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int i; gets(a); for(i=0;…… 题解列表 2022年11月22日 0 点赞 0 评论 116 浏览 评分:0.0
C语言 电报加密& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define Long 80//允许输入字符串长度int main(){ v…… 题解列表 2022年11月20日 0 点赞 0 评论 105 浏览 评分:0.0
C 语言看看就好,简单易懂 摘要: #include int main() { char c = 0; while ((c = getchar()) != '\n' && c != -1)// -1表示getcha…… 题解列表 2022年11月05日 0 点赞 0 评论 190 浏览 评分:6.0
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 157 浏览 评分:0.0
C语言解决 加密问题 摘要:解题思路:超简单,利用ASCLL代码表,相邻字母间相差1个ASCLL值注意事项:利用了strlen函数,需要#include<string,h>参考代码:#include <stdio.h>#incl…… 题解列表 2022年10月12日 0 点赞 0 评论 188 浏览 评分:9.3
电 报 加 密 摘要: #include #include #include #include using namespace std; int main…… 题解列表 2022年10月12日 0 点赞 0 评论 90 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 159 浏览 评分:0.0
输入一行电报文字,将字母变成其下一字母(如’a’变成’b’……’z’变成’a&rsquo 摘要:解题思路: 除了a-z需要变其余都不变 其中z是特殊项,需要转换为a 那么此题就需要分三种情况:a-y z 其他注意事项: 输入时需要使用nextline才能读到空格,ne…… 题解列表 2022年08月04日 0 点赞 0 评论 566 浏览 评分:4.0
优质题解 [编程入门]电报加密 摘要:解题思路:本题的解题关键是遇到字母如何输出其下一位字母,当遇到字母Z(z)时,输出a,形成这种循环的规律,该如何解决这个问题呢,可以通过取余来实现:通过式子(str[i]-96)%26+97 就可以…… 题解列表 2022年06月16日 0 点赞 1 评论 2283 浏览 评分:8.6
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char ch; while((ch=getchar())!=EOF){ …… 题解列表 2022年06月14日 0 点赞 0 评论 82 浏览 评分:0.0