[编程入门]电报加密-题解(Python代码) 摘要:有注释版 ```python #continue退出本次循环,控制输出 str = input() for i in str : #遍历输出 if i.isa…… 题解列表 2020年05月26日 0 点赞 0 评论 373 浏览 评分:9.0
[编程入门]电报加密-题解(C语言代码) 摘要: int main() { char a[100]; gets(a); int i=0; while(a[i]!='\0') …… 题解列表 2020年06月09日 0 点赞 0 评论 199 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:## 解题思路 利用取模运算 ## 代码 ```c #include #include int main(void) { char str[100]; int i = 0; …… 题解列表 2020年06月30日 0 点赞 1 评论 203 浏览 评分:8.7
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:这题感觉有一些错误,看了许多的题解发现当输入y后,y被译码成了a,y应该被译码成z的,因为有这个疑问,特地请教了大佬,注意事项:参考代码:#include<stdio.h>#include<…… 题解列表 2020年07月13日 0 点赞 0 评论 343 浏览 评分:7.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[100]; int i; gets(str); for…… 题解列表 2020年07月21日 0 点赞 0 评论 224 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码)·······思路简单直接,易理解 摘要:解题思路:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int length,i; gets(a); length=st…… 题解列表 2020年07月26日 0 点赞 5 评论 572 浏览 评分:9.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:获得一个输入进行判断直接输出就行。注意事项:参考代码:#include<stdio.h>#include<ctype.h>int main(){ char c; while(scanf("%…… 题解列表 2020年08月03日 0 点赞 0 评论 104 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:注意事项:大家注意输出不要打空格就好,其他的就没什么特别要注意的了参考代码:#include <stdio.h>#include <string.h>int main(void){ c…… 题解列表 2020年08月20日 0 点赞 0 评论 246 浏览 评分:0.0
用两种方法来解决1042:电报加密(C语言代码) 摘要:##题目链接:[1042: [编程入门]电报加密](https://www.dotcpp.com/oj/problem1042.html) #解题基本思路: - 得到电报内容 - 进行加密操作 …… 题解列表 2020年08月22日 0 点赞 0 评论 1493 浏览 评分:9.6
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:本题的难点在于字母的绕回问题上,我们可以用表达式 ((ch - 'a') + n) % 26 + ' a'来解决这个问题,当需要小写就用小写a,需要大写就用大…… 题解列表 2020年08月29日 0 点赞 0 评论 546 浏览 评分:9.0