1042: [编程入门]电报加密 摘要:#此题和上一题类似,也需要接收空格,同时还需要进行字母加密,难度稍高。 ```cpp #include #include #include using namespace std; /…… 题解列表 2023年02月23日 0 点赞 1 评论 170 浏览 评分:9.9
c++语言解决电报加密 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<string.h>using namespace std;void get(char…… 题解列表 2023年01月11日 0 点赞 0 评论 74 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[100]; gets(s); for(int i=0;s[i];i++){ if(s[i]>=…… 题解列表 2023年01月08日 0 点赞 1 评论 88 浏览 评分:9.9
[编程入门]电报加密 摘要:解题思路:注意事项:1、只要字母改变,其余字符不变2、'z'要变成'a'和'Z'要变成'A'比较特殊3、要用到函数ord()将字母转为a…… 题解列表 2023年01月03日 0 点赞 0 评论 96 浏览 评分:0.0
1042: [编程入门]电报加密 简单的凯撒密码 摘要:解题思路:一看就是凯撒密码,循环替换就正确。注意事项:参考代码:x=input()s=""for i in x: if i>="a" and i<="z" or i>="A" and i<="Z"…… 题解列表 2022年12月29日 0 点赞 0 评论 92 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密 思路清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[100]; gets(a…… 题解列表 2022年12月27日 0 点赞 0 评论 81 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[1001]; ge…… 题解列表 2022年12月18日 0 点赞 0 评论 140 浏览 评分:9.9
不用数组的和指针的方式完成这道题-《C语言》 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char arr; while((arr = g…… 题解列表 2022年12月14日 0 点赞 0 评论 67 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:```cpp #include using namespace std; int main() { char s[1000]; int i; gets(s); …… 题解列表 2022年12月06日 0 点赞 0 评论 225 浏览 评分:9.9