笔记 1003: [编程入门]密码破译 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2023年12月19日 0 点赞 0 评论 544 浏览 评分:0.0
新手试了试,大佬们看看 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,sz; char arr[20]={0}; gets(arr); sz = sizeof(a…… 题解列表 2023年11月28日 0 点赞 0 评论 77 浏览 评分:0.0
1003密码破译 摘要:解题思路:字符+4操作/*要将"China"译成密码,译码规律是:用原来字母后面的第4个字母代替原来的字母.例如,字母"A"后面第4个字母是"E"."E"代替"A"。因此,"China"应译为"Glm…… 题解列表 2023年11月24日 0 点赞 0 评论 254 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:``` #include using namespace std; int main(){ char a,b,c,d,e; cin>>a>>b>>c>>d>>e; a+=4; b…… 题解列表 2023年11月13日 0 点赞 0 评论 190 浏览 评分:0.0
1003c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&c4…… 题解列表 2023年11月05日 0 点赞 0 评论 117 浏览 评分:0.0
[编程入门]密码破译 摘要:解题思路:自己看注意事项:参考代码:#include <stdio.h>void encryptPassword(char* str) { int i = 0; while (str[i]…… 题解列表 2023年10月29日 0 点赞 0 评论 425 浏览 评分:9.9
[编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c…… 题解列表 2023年10月28日 0 点赞 0 评论 134 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[1001]; gets(str); st…… 题解列表 2023年10月10日 0 点赞 0 评论 245 浏览 评分:0.0
[编程入门]密码破译的简单解答 摘要:解题思路:刚学c语言,什么都不会,所以用了最简单(思路比较简单,但写出来不一定是简单的)的方式,仅供大家参考。大家后面更深入的学习后也一定可以写出更好。注意事项:思路很简单。如果能够有大佬提供更好的方…… 题解列表 2023年09月26日 0 点赞 1 评论 136 浏览 评分:8.0
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