[编程入门]密码破译-题解(C语言代码) 摘要:```c #include int main(void) { char a[6]; int i; gets(a); for(i=0;a[i]!='\0';i++)…… 题解列表 2021年02月08日 0 点赞 0 评论 226 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) 摘要:解题思路:我使用的是最笨的方法,直接加就好了注意事项:文件头需要使用:#include<stdio.h>不可以使用:#include<bits/stdc++.h>//这个是Linux中的在Window…… 题解列表 2021年02月08日 0 点赞 0 评论 373 浏览 评分:0.0
Hello World! 摘要:#include <stdio.h>void main(){ printf("**************************\n"); printf("Hello World!\n"…… 题解列表 2021年03月01日 0 点赞 0 评论 209 浏览 评分:0.0
lkx编写题解 1003: [编程入门]密码破译 摘要:#include<stdio.h>int main(){ char a[100] = {0}; int i = 0; gets(a); for(i = 0;a[i] != &…… 题解列表 2021年03月02日 0 点赞 0 评论 255 浏览 评分:0.0
[编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){ char c1,c2,c3,c4,c5; c1='C'; c2='h'; c3=…… 题解列表 2021年08月04日 0 点赞 0 评论 251 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&c4…… 题解列表 2021年08月12日 0 点赞 0 评论 232 浏览 评分:0.0
通过取余,循环来实现各种不同输入情况的对应密码 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){ string s; cin…… 题解列表 2022年02月02日 0 点赞 0 评论 156 浏览 评分:0.0
密码破译[使用Python] 摘要:str1 = input() strList = list(str1) count = 0 chrNum = 0 while count < len(strList): chrNum…… 题解列表 2022年03月31日 0 点赞 0 评论 247 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c…… 题解列表 2022年04月06日 0 点赞 0 评论 183 浏览 评分:0.0
[编程入门]密码破译[JAVA语言] 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2022年04月23日 0 点赞 0 评论 299 浏览 评分:0.0