[编程入门]密码破译 摘要:一、解题思路:输入值+4C参考代码:#include int main() { char a, b, c, d, e; scanf("%d%d%d%d%d", &a, &b, &c, &d, …… 题解列表 2023年04月30日 0 点赞 0 评论 344 浏览 评分:9.9
c++的一种写法 摘要:解题思路:#include<iostream>using namespace std;int main(){char c1,c2,c3,c4,c5,c6,c7,c8,c9,c10; cin>>c…… 题解列表 2023年08月07日 0 点赞 0 评论 551 浏览 评分:9.9
[编程入门]密码破译 摘要:解题思路:自己看注意事项:参考代码:#include <stdio.h>void encryptPassword(char* str) { int i = 0; while (str[i]…… 题解列表 2023年10月29日 0 点赞 0 评论 426 浏览 评分:9.9
依次处理单个字符即可 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<stdio.h> using namespace std; int main() { …… 题解列表 2024年01月01日 1 点赞 0 评论 480 浏览 评分:9.9
利用for循环求解密码破译 摘要:解题思路:由题易知,用户输入字符串,输出字符串中每个字符的后面第四个字母,则可用char来接收该字符串中的每一个字符,再通过for循环逐个输出所有字符,组成字符串注意事项:1、代码中b值的限制条件可根…… 题解列表 2024年01月16日 2 点赞 0 评论 605 浏览 评分:9.9
[编程入门]密码破译 摘要:#include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false) int main() …… 题解列表 2024年02月05日 0 点赞 0 评论 429 浏览 评分:9.9
用string类直接秒了 摘要:```cpp #include #include using namespace std; int main() { string str; cin >> str; …… 题解列表 2024年02月12日 7 点赞 0 评论 629 浏览 评分:9.9
这个作弊也可以哟 摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){ cout<<"Glmre"; return 0;}…… 题解列表 2024年07月29日 7 点赞 0 评论 614 浏览 评分:9.9
利用数组和循环结构的题解(C语言) 摘要:解题思路:将用户输入字母利用ASCII码+4来进行破译。注意事项:不了解ASCII码的可以先去学习一下ASCII码。参考代码:#include<stdio.h>int main(){ char …… 题解列表 2024年11月09日 8 点赞 0 评论 654 浏览 评分:9.9
java.最简单的办法 摘要:解题思路:其中有一些坑,比如wxyz这几个会误判成为符号,所以我们需要进行特判注意事项:asll编码的范围参考代码: Scanner scanner = new Scanner(Sy…… 题解列表 2021年05月11日 0 点赞 3 评论 2254 浏览 评分:9.8