[编程入门]密码破译-题解(C语言代码) 摘要:解题思路:注意事项:注意字母参考代码:#include<stdio.h>int main(){char s[11];gets(s);for (int i= 0; s[ i ] != '\0&#…… 题解列表 2021年02月04日 0 点赞 0 评论 489 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) ```c#includeintmain(void){chara[6];inti;gets(a);for(i=0;a[i]!='\0';i++){a[i]+=4;}a[i]='\0';puts(a);return0;}``` 题解列表 2021年02月08日 0 点赞 0 评论 531 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) 摘要:解题思路:我使用的是最笨的方法,直接加就好了注意事项:文件头需要使用:#include<stdio.h>不可以使用:#include<bits/stdc++.h>//这个是Linux中的在Window…… 题解列表 2021年02月08日 0 点赞 0 评论 960 浏览 评分:0.0
Hello World! 摘要:#include <stdio.h>void main(){ printf("**************************\n"); printf("Hello World!\n"…… 题解列表 2021年03月01日 0 点赞 0 评论 556 浏览 评分: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 评论 675 浏览 评分:0.0
[编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){ char c1,c2,c3,c4,c5; c1='C'; c2='h'; c3=…… 题解列表 2021年08月04日 0 点赞 0 评论 615 浏览 评分: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 评论 589 浏览 评分:0.0
通过取余,循环来实现各种不同输入情况的对应密码 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){ string s; cin…… 题解列表 2022年02月02日 0 点赞 0 评论 520 浏览 评分:0.0
密码破译[使用Python] 摘要:str1 = input() strList = list(str1) count = 0 chrNum = 0 while count < len(strList): chrNum…… 题解列表 2022年03月31日 0 点赞 0 评论 629 浏览 评分: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 评论 546 浏览 评分:0.0