[编程入门]密码破译 摘要:#include <stdio.h>int main() { char c1 = 'C'; char c2 = 'h'; char c3 = 'i'; …… 题解列表 2022年07月14日 0 点赞 0 评论 906 浏览 评分:9.9
数组解答100以内长度密码破译(新手版) 摘要:解题思路:一,设置数组变量a[],长度给100 设置整数变量i,用作计数和数组下标 设置字符变量t,用作接受输入和传递给…… 题解列表 2022年08月11日 0 点赞 0 评论 688 浏览 评分:9.9
编写题解 1003: [编程入门]密码破译 摘要:python参考代码:用列表:s = input()m = []for i in s: m.append(chr(ord(i)+4))print("".join(m))用字符串:s = inpu…… 题解列表 2023年03月16日 2 点赞 0 评论 1012 浏览 评分:9.9
[编程入门]密码破译 摘要:一、解题思路:输入值+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 评论 362 浏览 评分: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 评论 589 浏览 评分:9.9
[编程入门]密码破译 摘要:解题思路:自己看注意事项:参考代码:#include <stdio.h>void encryptPassword(char* str) { int i = 0; while (str[i]…… 题解列表 2023年10月29日 0 点赞 0 评论 442 浏览 评分:9.9
依次处理单个字符即可 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<stdio.h> using namespace std; int main() { …… 题解列表 2024年01月01日 1 点赞 0 评论 535 浏览 评分:9.9
利用for循环求解密码破译 摘要:解题思路:由题易知,用户输入字符串,输出字符串中每个字符的后面第四个字母,则可用char来接收该字符串中的每一个字符,再通过for循环逐个输出所有字符,组成字符串注意事项:1、代码中b值的限制条件可根…… 题解列表 2024年01月16日 2 点赞 0 评论 725 浏览 评分:9.9
[编程入门]密码破译 摘要:#include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false) int main() …… 题解列表 2024年02月05日 0 点赞 0 评论 515 浏览 评分:9.9
用string类直接秒了 摘要:```cpp #include #include using namespace std; int main() { string str; cin >> str; …… 题解列表 2024年02月12日 7 点赞 0 评论 713 浏览 评分:9.9