for的引用破解密码 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string s; cin>>s; for(auto…… 题解列表 2022年04月24日 0 点赞 0 评论 164 浏览 评分:0.0
密码破译 [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[11]; //定义一个长度为10的…… 题解列表 2022年04月25日 0 点赞 0 评论 167 浏览 评分:0.0
密码破译(通用版本) 摘要:解题思路:通过ASCII码进行计算A~V-->E~ZW~Z-->a~da~v-->e~zw~z-->A~D注意事项:参考代码:temp=input()for i in temp: temp1=or…… 题解列表 2022年04月29日 0 点赞 0 评论 326 浏览 评分:8.0
1003: [编程入门]密码破译 摘要:解题思路:此题就是把一个字符串的字母用它后面的第4个字母来代替。注意事项:当字母往后移四格,要判断它会不会越界,而且要分条件进行移位。参考代码:#include<bits/stdc++.h>//万能头…… 题解列表 2022年04月30日 0 点赞 3 评论 1550 浏览 评分:9.9
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:str=input() for i in str: print(chr(ord(i)+4),end='')或者直接print("Glmre")…… 题解列表 2022年05月01日 0 点赞 0 评论 256 浏览 评分:0.0
[编程入门]密码破译有惊喜 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout <<"Glmre"; return 0…… 题解列表 2022年05月05日 0 点赞 0 评论 116 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:#include <iostream>using namespace std;string a;int main(){ cin>>a; for(int i=0;i<=a.size()-1;i++) …… 题解列表 2022年05月07日 0 点赞 0 评论 115 浏览 评分:0.0
密码破译 题解(c++超简单) 摘要:解题思路:用ASCII表的位置来转换。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ cin>>…… 题解列表 2022年05月08日 0 点赞 0 评论 527 浏览 评分:6.0
1003: [编程入门]密码破译 摘要:import java.io.*; import java.util.Arrays; public class Main { public static BufferedReader…… 题解列表 2022年05月09日 0 点赞 0 评论 147 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&…… 题解列表 2022年05月24日 0 点赞 0 评论 74 浏览 评分:0.0