[编程入门]电报加密-题解(Java代码) 摘要:注意事项:’z’变成’a’其它字符不变参考代码:import java.util.Scanner;public class Main { public static void main(Stri…… 题解列表 2020年12月07日 0 点赞 0 评论 414 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:注意事项:注意逻辑参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[111]; int n,i; …… 题解列表 2020年12月20日 0 点赞 0 评论 218 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:建议使用头文件string.h(你也可以自己判断长度)注意事项:z是一个断点参考代码:#include <stdio.h> #include<string.h>int main(){ in…… 题解列表 2020年12月23日 0 点赞 0 评论 308 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:是原字母转变为下一个字母,就在于ASCLL的变化,在原先ASCLL加一即可得到下一个字母注意事项:注意 z 要单独提出来,因为 z 加一后不会得到 a 输入格…… 题解列表 2021年01月26日 0 点赞 0 评论 250 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:**读入用gets,cin遇到空格或者回车就结束读入了** 注意事项:注意z的特判以至于上面没有到z没有等号 参考代码: ```cpp #include using nam…… 题解列表 2021年02月04日 0 点赞 0 评论 354 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:```c #include int main(void) { char a[100]; int i; gets(a); for(i=0;a[i]!='\0';i…… 题解列表 2021年02月06日 0 点赞 0 评论 222 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:* **解题思路:sunny:** * 利用 getchar() 在缓冲区中依次读取单个字符 :fa-thumbs-o-up: * 将单个字符判断是否属于字母范围 :fa-thumbs-o…… 题解列表 2021年02月21日 0 点赞 0 评论 258 浏览 评分:0.0
自己写的 思路很简单并且也很好解决 摘要:解题思路注意事项:注意gets和puts参考代码: char s[100]; gets(s); int i=0; while(s[i]!='\0') { …… 题解列表 2021年02月24日 0 点赞 0 评论 391 浏览 评分:0.0
很简单的字母移位 摘要:解题思路:根据字母与首字母的距离来判断如何移位。注意事项:没啥困难的参考代码:#include<iostream> using namespace std; int main(int argc, …… 题解列表 2021年04月08日 0 点赞 0 评论 160 浏览 评分:0.0
1042: [编程入门]电报加密 c语言 摘要:解题思路:注意事项:分开写出z的情况参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]={0}; int i…… 题解列表 2021年04月24日 0 点赞 0 评论 329 浏览 评分:0.0