[编程入门]电报加密-题解(C++代码)去掉空格的简单做法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<cstdio>usingnamespacest…… 题解列表 2020年11月17日 0 点赞 0 评论 1267 浏览 评分:9.9
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:每一个字母都有自己对应的ASCII值,相邻字母的ASCII值仅差1。注意事项:参考代码:#include#includeintmain(){ inti;…… 题解列表 2020年11月15日 0 点赞 0 评论 726 浏览 评分:7.3
[编程入门]电报加密-题解(C++代码)利用ASCII码对应的字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;i…… 题解列表 2020年11月07日 0 点赞 0 评论 290 浏览 评分:0.0
[编程入门]电报加密-题解(Python代码) 摘要:参考代码:deffun1(str1): str2='' #字符串不可改变…… 题解列表 2020年10月26日 0 点赞 0 评论 287 浏览 评分:5.5
[编程入门]电报加密-题解(C语言代码) 摘要:```c#include#includeintmain(){chara[100];inti,j;gets(a);j=strlen(a);for(i=0;i='a'&&a[i]='A'&…… 题解列表 2020年09月08日 0 点赞 1 评论 193 浏览 评分:8.7
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:本题的难点在于字母的绕回问题上,我们可以用表达式((ch-'a')+n)%26+' a'来解决这个问题,当需…… 题解列表 2020年08月29日 0 点赞 0 评论 525 浏览 评分:9.0
用两种方法来解决1042:电报加密(C语言代码) 摘要:##题目链接:[1042:[编程入门]电报加密](https://www.dotcpp.com/oj/problem1042.html)#解题基本思路:-得到电报内容-进行加密操作-输出加密后的电报内…… 题解列表 2020年08月22日 0 点赞 0 评论 1441 浏览 评分:9.6
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:注意事项:大家注意输出不要打空格就好,其他的就没什么特别要注意的了参考代码:#include<stdio.h>#include<string.h>intmain(vo…… 题解列表 2020年08月20日 0 点赞 0 评论 227 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:获得一个输入进行判断直接输出就行。注意事项:参考代码:#include<stdio.h>#include<ctype.h>intmain(){charc;while(…… 题解列表 2020年08月03日 0 点赞 0 评论 86 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码)·······思路简单直接,易理解 摘要:解题思路:#include<stdio.h>#include<string.h>intmain(){chara[1000];intlength,i;gets(a);length…… 题解列表 2020年07月26日 0 点赞 5 评论 543 浏览 评分:9.0