c语言for简单循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[5]; int i; for (i = 0;i<5;i++) { …… 题解列表 2023年12月23日 1 点赞 1 评论 407 浏览 评分:0.0
开数组存字符按位+4再输出 摘要:解题思路:注意事项:参考代码:#include<cstdio>#include<iostream>#include<cstring>using namespace std;int main(){ in…… 题解列表 2024年03月12日 0 点赞 0 评论 388 浏览 评分:0.0
C语言密码编译—putchar 摘要:参考代码:#include<stdio.h> int main() { char c1 = 'C', c2 = 'h', c3 = 'i', c4…… 题解列表 2024年04月04日 0 点赞 0 评论 498 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:str = input().lower() s = "" for i in str: if i == 'w': s += …… 题解列表 2024年04月10日 2 点赞 0 评论 1127 浏览 评分:0.0
【编程入门】密码破译 摘要:解题思路:破译之后的密码是在为破译的密码在ASCII的值上加4注意事项:if(a[i]=='\n')break;要注意添加这一段程序,就可以在输入回车之后,跳出遍历数组a的循环参考代码…… 题解列表 2024年04月17日 1 点赞 0 评论 754 浏览 评分:0.0
密码破译(包含字母WXYZ) 摘要:解题思路:主要思路ASCII的循环思路,目前我自己还处于新手入门阶段,所以很多原理性的内容,无法做出更多的解释。题解我是参考前边几个大佬的思路,按照我自己的理解写的,如果有不对的地方,欢迎指正。假设数…… 题解列表 2024年06月10日 1 点赞 0 评论 665 浏览 评分:0.0
T1003 密码破译 摘要:解题思路:注意事项:参考代码:s=input()lst=[]lst=[ord(i) for i in s]for i in lst: i=chr(i+4) &nb…… 题解列表 2025年05月01日 2 点赞 0 评论 1625 浏览 评分:0.0
在哪你都看得到我记住这句话 摘要:解题思路:按照题意去做就好了注意事项:参考代码:#include<iostream>usingnamespacestd;intm…… 题解列表 2026年03月19日 0 点赞 0 评论 212 浏览 评分:0.0
1003将字符向后转变包含注意事项kirito 摘要:解题思路:注意事项:<<和>>的临时表达式会改变字符变量为整型(即整型提升),但是赋值语句不会这样参考代码:#include<iostream>using name…… 题解列表 2026年04月03日 0 点赞 0 评论 150 浏览 评分:0.0
1003基础解法(简短输出) 摘要:解题思路:题目:要将"China"译成密码,译码规律是:用原来字母后面的第4个字母代…… 题解列表 2026年04月17日 1 点赞 0 评论 137 浏览 评分:0.0