drdsgfgfdsgdsfgdfsg 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "string.h"int main(){ int n; scanf("%d", &n); for (int i =…… 题解列表 2021年08月20日 0 点赞 0 评论 220 浏览 评分:0.0
编写题解 1162: 密码(python) 摘要:fh = ['~','!','@','#','$','%','^'] num = [s…… 题解列表 2021年12月25日 0 点赞 0 评论 143 浏览 评分:0.0
纯粹c语言,不要什么函数之类的 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> int main(){ char arr[] = { '~&#…… 题解列表 2022年01月23日 0 点赞 0 评论 118 浏览 评分:0.0
Hifipsysta- 1162-密码(C++代码) 摘要:```cpp #include #include #include #include using namespace std; int main(){ int N; …… 题解列表 2022年02月12日 0 点赞 0 评论 230 浏览 评分:0.0
#C++1162——密码(gets与cin,scanf混合使用会无法正常执行) 摘要:#include#include using namespace std; int a,b,c,d; bool check(char p)//对四种情况进行判断,并标记为1 { if(…… 题解列表 2022年07月14日 0 点赞 0 评论 370 浏览 评分:0.0
优质题解 Frank-密码-题解(Java代码) 摘要:原题链接:[密码](https://www.dotcpp.com/oj/problem1162.html "密码") ### 解题思路 1. 定义一个字符串类型的数组,数组长度设置为m 2.…… 题解列表 2022年08月01日 0 点赞 0 评论 498 浏览 评分:0.0
密码(C语言) 摘要:解题思路:注意事项:比较简单,没什么好主意的参考代码:#include<stdio.h>#include<string.h>#include <ctype.h>#include<math.h>int …… 题解列表 2022年08月21日 0 点赞 0 评论 132 浏览 评分:0.0
密码(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i,s[200]; scanf("%d",&n); …… 题解列表 2022年12月21日 0 点赞 0 评论 116 浏览 评分:0.0
编程小白能看懂的c++98 摘要:解题思路:注意事项:参考代码:#include #include using namespace std; int main() { int q = 0; cin >> q; char …… 题解列表 2023年01月15日 0 点赞 0 评论 63 浏览 评分:0.0
密码——python 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): a = str(input()) s = 0 for i in a: …… 题解列表 2023年03月26日 0 点赞 0 评论 124 浏览 评分:0.0