[编程入门]电报加密-题解(C++代码)去掉空格的简单做法 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <cstdio>using namespace std;int main(){…… 题解列表 2020年11月17日 0 点赞 0 评论 1303 浏览 评分:9.9
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:每一个字母都有自己对应的ASCII值,相邻字母的ASCII值仅差1。注意事项:参考代码:#include#includeint main(){ int i; char a[100]…… 题解列表 2020年11月15日 0 点赞 0 评论 785 浏览 评分:7.3
[编程入门]电报加密-题解(C++代码)利用ASCII码对应的字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; int…… 题解列表 2020年11月07日 0 点赞 0 评论 359 浏览 评分:0.0
[编程入门]电报加密-题解(Python代码) 摘要:参考代码:def fun1(str1): str2='' #字符串不可改变,故新建空字符串 for i in str1: if i.isalpha()…… 题解列表 2020年10月26日 0 点赞 0 评论 326 浏览 评分:5.5
[编程入门]电报加密-题解(C语言代码) 摘要:```c #include #include int main(){ char a[100]; int i,j; gets(a); j=strlen(a); for(i=0;i='a'…… 题解列表 2020年09月08日 0 点赞 1 评论 229 浏览 评分:8.7
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:本题的难点在于字母的绕回问题上,我们可以用表达式 ((ch - 'a') + n) % 26 + ' a'来解决这个问题,当需要小写就用小写a,需要大写就用大…… 题解列表 2020年08月29日 0 点赞 0 评论 546 浏览 评分:9.0
用两种方法来解决1042:电报加密(C语言代码) 摘要:##题目链接:[1042: [编程入门]电报加密](https://www.dotcpp.com/oj/problem1042.html) #解题基本思路: - 得到电报内容 - 进行加密操作 …… 题解列表 2020年08月22日 0 点赞 0 评论 1493 浏览 评分:9.6
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:注意事项:大家注意输出不要打空格就好,其他的就没什么特别要注意的了参考代码:#include <stdio.h>#include <string.h>int main(void){ c…… 题解列表 2020年08月20日 0 点赞 0 评论 246 浏览 评分:0.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(){ char a[1000]; int length,i; gets(a); length=st…… 题解列表 2020年07月26日 0 点赞 5 评论 572 浏览 评分:9.0