c++字符串简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std;int main(){ string str; int n; cin>>n; string …… 题解列表 2023年10月18日 0 点赞 0 评论 59 浏览 评分:0.0
1162密码(简单的字符分类?) 摘要:解题思路:统计字符串中是否存在三种不同字符,但是奇怪的是,我一开始按照前面字符统计的题目去做,案列虽然过了,但是后面的答案错误,我一看题目要求,它要求的特殊字符只要它列出来的那几种,其他的都不行,这也…… 题解列表 2024年07月10日 0 点赞 0 评论 96 浏览 评分:0.0
【密码】-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int M; cin >> M; for (int i…… 题解列表 2019年10月16日 0 点赞 0 评论 357 浏览 评分:0.0
drdsgfgfdsgdsfgdfsg 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "string.h"int main(){ int n; scanf("%d", &n); for (int i =…… 题解列表 2021年08月20日 0 点赞 0 评论 187 浏览 评分:0.0
密码-题解(C语言代码)可能代码比较长,但是好理解 摘要:```c #include #include int judge(char *mima,char *A,char *B,char *C,char *D); int main(){ char…… 题解列表 2020年08月28日 0 点赞 0 评论 294 浏览 评分:0.0
密码(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i,s[200]; scanf("%d",&n); …… 题解列表 2022年12月21日 0 点赞 0 评论 70 浏览 评分:0.0
密码-题解(C语言代码)简单易懂!!!小白级代码~ 摘要:解题思路: 用指针数组保存每个密码的首地址,遍历每个密码的每个字符,用flag数组标志每种密码类型,1表示有该种密码,0表示没有注意事项: 指针数组注意分配足够大的空间,不然会出段错误参考…… 题解列表 2020年11月25日 0 点赞 0 评论 339 浏览 评分:0.0
【密码】 (C++代码)(有惊喜!!!一种新想法) 摘要:解题思路:首先定义字符数组然后输入再把四个类型的字符分类,如果没有这种字符就是‘0’(假),然后最终加起来验证是否>=3即可。注意事项:注意同时需要满足两个条件才可以参考代码:#include<ios…… 题解列表 2019年04月19日 0 点赞 0 评论 518 浏览 评分:0.0
1162: 密码(遍历) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int m,cnt = 0; string s, …… 题解列表 2024年09月01日 0 点赞 0 评论 78 浏览 评分:0.0
【密码】 (C++代码) 摘要://用最笨的方法,把5种情况都列出来,比较好理解 #include <iostream> #include <cstdlib> #include <cmath> #include <deque…… 题解列表 2018年02月11日 0 点赞 0 评论 471 浏览 评分:0.0