密码破译(包含字母WXYZ) 摘要:解题思路:主要思路ASCII的循环思路,目前我自己还处于新手入门阶段,所以很多原理性的内容,无法做出更多的解释。题解我是参考前边几个大佬的思路,按照我自己的理解写的,如果有不对的地方,欢迎指正。假设数…… 题解列表 2024年06月10日 1 点赞 0 评论 381 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年05月11日 3 点赞 0 评论 721 浏览 评分:10.0
【编程入门】密码破译 摘要:解题思路:破译之后的密码是在为破译的密码在ASCII的值上加4注意事项:if(a[i]=='\n')break;要注意添加这一段程序,就可以在输入回车之后,跳出遍历数组a的循环参考代码…… 题解列表 2024年04月17日 1 点赞 0 评论 514 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:str = input().lower() s = "" for i in str: if i == 'w': s += …… 题解列表 2024年04月10日 2 点赞 0 评论 809 浏览 评分:0.0
C语言密码编译—putchar 摘要:参考代码:#include<stdio.h> int main() { char c1 = 'C', c2 = 'h', c3 = 'i', c4…… 题解列表 2024年04月04日 0 点赞 0 评论 218 浏览 评分:0.0
开数组存字符按位+4再输出 摘要:解题思路:注意事项:参考代码:#include<cstdio>#include<iostream>#include<cstring>using namespace std;int main(){ in…… 题解列表 2024年03月12日 0 点赞 0 评论 209 浏览 评分:0.0
用string类直接秒了 摘要:```cpp #include #include using namespace std; int main() { string str; cin >> str; …… 题解列表 2024年02月12日 9 点赞 0 评论 880 浏览 评分:10.0
[编程入门]密码破译 摘要:#include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false) int main() …… 题解列表 2024年02月05日 1 点赞 0 评论 606 浏览 评分:9.9
编写题解 1003: [编程入门]密码破译 摘要:解题思路:ASCII编码,密码要求后面的四位,那就在原有基础上+4就可以注意事项:参考代码: Scanner sc=new Scanner(System.in); St…… 题解列表 2024年01月29日 0 点赞 0 评论 354 浏览 评分:8.0
利用for循环求解密码破译 摘要:解题思路:由题易知,用户输入字符串,输出字符串中每个字符的后面第四个字母,则可用char来接收该字符串中的每一个字符,再通过for循环逐个输出所有字符,组成字符串注意事项:1、代码中b值的限制条件可根…… 题解列表 2024年01月16日 2 点赞 0 评论 802 浏览 评分:9.9