编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:a = ['C', 'h', 'i', 'n', 'a']c = []for i in a…… 题解列表 2022年06月16日 0 点赞 0 评论 233 浏览 评分:7.0
1003密码破译 摘要:参考代码:#include <stdio.h>int main(void){ char size[] = {'C','h','i','n&…… 题解列表 2022年06月03日 0 点赞 0 评论 128 浏览 评分: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 评论 127 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:import java.io.*; import java.util.Arrays; public class Main { public static BufferedReader…… 题解列表 2022年05月09日 0 点赞 0 评论 187 浏览 评分:0.0
密码破译 题解(c++超简单) 摘要:解题思路:用ASCII表的位置来转换。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ cin>>…… 题解列表 2022年05月08日 0 点赞 0 评论 581 浏览 评分:6.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 评论 167 浏览 评分:0.0
[编程入门]密码破译有惊喜 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout <<"Glmre"; return 0…… 题解列表 2022年05月05日 0 点赞 0 评论 150 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:str=input() for i in str: print(chr(ord(i)+4),end='')或者直接print("Glmre")…… 题解列表 2022年05月01日 0 点赞 0 评论 292 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:解题思路:此题就是把一个字符串的字母用它后面的第4个字母来代替。注意事项:当字母往后移四格,要判断它会不会越界,而且要分条件进行移位。参考代码:#include<bits/stdc++.h>//万能头…… 题解列表 2022年04月30日 0 点赞 3 评论 1632 浏览 评分:9.9
密码破译(通用版本) 摘要:解题思路:通过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 评论 384 浏览 评分:8.0