[编程入门]电报加密-题解(C++代码) 摘要:/*主要是注意除了小写字母变化之外,其他都要原样输出*/ # #include using namespace std; int fun(char *a) { int i=0; …… 题解列表 2020年04月24日 0 点赞 0 评论 294 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要: 这里可以利用循环取模的思想,字母只有26个,当取下一个字母时先判断是第几个字母,然后把这个字母的位置加1对26取模构成一个26个字母的循环,就可以完成对所有字母的加密 #include vo…… 题解列表 2020年04月17日 0 点赞 0 评论 470 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码) 摘要:1.如果字母是z ,就变成了a 2.如果是其他的字母,就直接变成后一个 3.如果不是字母,就保持不变 ```cpp #include using namespace std; in…… 题解列表 2020年04月16日 0 点赞 0 评论 303 浏览 评分:0.0
[编程入门]电报加密-题解(C语言,多种字符均可,大小写,空格) 摘要:**直接看代码,代码中有注解** ```c #include void secert(char a[]) { while(*a)//还有字符时 { if(…… 题解列表 2020年04月07日 0 点赞 1 评论 1927 浏览 评分:9.9
[编程入门]电报加密-题解(C语言代码) 摘要: 将输入的字符,存储到数组中然后循环在判断,筛选字母将字符向前推进一位,差不多就这样。 代码: #include #include int main() …… 题解列表 2020年03月14日 0 点赞 0 评论 312 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码)注释版 摘要:这道题的主要问题是z->a是一个循环要单独列出。 ```cpp #include//今天发现的万能头文件,太棒了 using namespace std; int main() { …… 题解列表 2020年03月07日 0 点赞 0 评论 354 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:### 思路: 先判断输入字符是不是字母,是:字符自加一 不是:判断下一个字符 直到判断到字符串结尾'\0'; #### # isalpha()函数:判断字符是不是字母,是字母返回1,不是返…… 题解列表 2020年03月06日 0 点赞 4 评论 446 浏览 评分:6.0
[编程入门]电报加密 (Java代码) 摘要:```java public static void main(String[] args) { Scanner input=new Scanner(System.in)…… 题解列表 2020年02月29日 0 点赞 2 评论 502 浏览 评分:7.3
[编程入门]电报加密-题解(C语言代码)<ctype.h>isalpha(c) 摘要:题目:输入一行电报文字,将字母变成其下一字母(如’a’变成’b’……’z’变成’a’其它字符不变)。 1、include中的函数: isalpha(c)当c为字母时,输出非零数 2、include…… 题解列表 2020年02月26日 0 点赞 0 评论 311 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:#include #include int main() { char str[80]; int i,n; printf("请输入字符串\n"); gets(str); fo…… 题解列表 2020年02月22日 0 点赞 0 评论 210 浏览 评分:0.0