新手试了试,大佬们看看 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,sz; char arr[20]={0}; gets(arr); sz = sizeof(a…… 题解列表 2023年11月28日 0 点赞 0 评论 93 浏览 评分:0.0
笔记 1003: [编程入门]密码破译 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2023年12月19日 0 点赞 0 评论 819 浏览 评分:0.0
密码破译(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[5]; int i; scanf("%s",str); for(i=0…… 题解列表 2023年12月20日 0 点赞 0 评论 116 浏览 评分:0.0
c语言for简单循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[5]; int i; for (i = 0;i<5;i++) { …… 题解列表 2023年12月23日 1 点赞 1 评论 136 浏览 评分:0.0
依次处理单个字符即可 摘要:解题思路:注意事项:参考代码:#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 评论 727 浏览 评分:9.9
编写题解 1003: [编程入门]密码破译 摘要:解题思路:ASCII编码,密码要求后面的四位,那就在原有基础上+4就可以注意事项:参考代码: Scanner sc=new Scanner(System.in); St…… 题解列表 2024年01月29日 0 点赞 0 评论 327 浏览 评分:8.0
[编程入门]密码破译 摘要:#include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false) int main() …… 题解列表 2024年02月05日 0 点赞 0 评论 518 浏览 评分:9.9
用string类直接秒了 摘要:```cpp #include #include using namespace std; int main() { string str; cin >> str; …… 题解列表 2024年02月12日 7 点赞 0 评论 714 浏览 评分:9.9
开数组存字符按位+4再输出 摘要:解题思路:注意事项:参考代码:#include<cstdio>#include<iostream>#include<cstring>using namespace std;int main(){ in…… 题解列表 2024年03月12日 0 点赞 0 评论 188 浏览 评分:0.0