利用for循环求解密码破译 摘要:解题思路:由题易知,用户输入字符串,输出字符串中每个字符的后面第四个字母,则可用char来接收该字符串中的每一个字符,再通过for循环逐个输出所有字符,组成字符串注意事项:1、代码中b值的限制条件可根…… 题解列表 2024年01月16日 1 点赞 0 评论 341 浏览 评分:9.9
1003: [编程入门]密码破译 摘要:解题思路:此题就是把一个字符串的字母用它后面的第4个字母来代替。注意事项:当字母往后移四格,要判断它会不会越界,而且要分条件进行移位。参考代码:#include<bits/stdc++.h>//万能头…… 题解列表 2022年04月30日 0 点赞 3 评论 1549 浏览 评分:9.9
用string类直接秒了 摘要:```cpp #include #include using namespace std; int main() { string str; cin >> str; …… 题解列表 2024年02月12日 2 点赞 0 评论 319 浏览 评分:9.9
[编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;const int N = 100;char A[N];in…… 题解列表 2022年02月25日 0 点赞 0 评论 1137 浏览 评分: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 评论 445 浏览 评分:9.9
依次处理单个字符即可 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<stdio.h> using namespace std; int main() { …… 题解列表 2024年01月01日 1 点赞 0 评论 243 浏览 评分:9.9
[编程入门]密码破译 摘要:#include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false) int main() …… 题解列表 2024年02月05日 0 点赞 0 评论 250 浏览 评分:9.9
这个作弊也可以哟 摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){ cout<<"Glmre"; return 0;}…… 题解列表 2024年07月29日 2 点赞 0 评论 335 浏览 评分:9.9
1003: [编程入门]密码破译 摘要:解题思路:如果直接输出c1+4,得到的结果是c1的ASCII码值+4,需要用(char)转换一下。注意事项:题目表述不清晰,一方面说要给五个字符变量赋初值,一方面又说输入是China,我的解法是无输入…… 题解列表 2022年02月19日 0 点赞 0 评论 962 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题3.7 (C++代码) 摘要:解题思路:注意事项:1.字符串计算长度 2.强制转换参考代码:#include <iostream>#include <string.h>using namespace std;int main…… 题解列表 2018年01月11日 1 点赞 0 评论 2055 浏览 评分:9.6