恺撒密码-题解(C语言代码) 摘要: #include #include int main() { char a[210]; while(strcmp(gets(a…… 题解列表 2019年12月01日 0 点赞 0 评论 385 浏览 评分:0.0
c代码记录之凯撒密码 摘要:按理说应该以是否是第二行来甄别输出,而不是以是否不等于START或END,因为密文第二行也可能是START或END,优化也没多大意思,就这么着吧 #include #include…… 题解列表 2023年12月20日 0 点赞 0 评论 122 浏览 评分:0.0
恺撒密码 (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h> #include<string.h> int main() { char ch[200][200]; char s…… 题解列表 2018年03月31日 0 点赞 0 评论 786 浏览 评分:0.0
恺撒密码-题解(C语言代码) 摘要:```c #include #include char br[]={'V','W','X','Y','Z','A','B','C','D','E','F','G','H','I','J','K'…… 题解列表 2019年06月08日 0 点赞 0 评论 457 浏览 评分:0.0
凯撒密码—字母循环 摘要:####这个题的关键是要把26个大写字母循环起来 解题思路: 题意是把每个字符串的字符向左移五位然后输出新的字符串,根据Ascll表可以知道对字符减5可以得到左移5位的字符,遍历每次输入的字符串对…… 题解列表 2023年10月08日 0 点赞 0 评论 123 浏览 评分:0.0