【密码】-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int M; cin >> M; for (int i…… 题解列表 2019年10月16日 0 点赞 0 评论 338 浏览 评分:0.0
进军ACM!题解1162:【密码】 (C++代码) 摘要:解题思路:先输入密码,(循环),然后判断每组密码便可注意事项:浅色全为我检验程序所用参考代码:#include<iostream>#include<stdio.h>#include<string.h>…… 题解列表 2018年04月07日 12 点赞 3 评论 410 浏览 评分:0.0
我们就要设置一个安全的密码,安全密码的检验,easy 摘要:解题思路:yixie c++的字符串基本操作注意事项:bool arr[4] = {true};只会将第一个元素设置为true;参考代码:#include <iostream> #include <…… 题解列表 2024年08月19日 0 点赞 0 评论 64 浏览 评分:0.0
【密码】 (C++代码)自我感觉挺清晰的思路了....第一次发表,望谅解 摘要:解题思路:题目要求:(1).密码长度大于等于8,且不要超过16。 (2).密码中的字符应该来自下面“字符类别”中四组中的至少三组。 这四个字符类别分别为: 1.大写字母:A,B,C...Z; 2.小写…… 题解列表 2018年06月07日 12 点赞 0 评论 803 浏览 评分: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 评论 324 浏览 评分:0.0
Hifipsysta- 1162-密码(C++代码) 摘要:```cpp #include #include #include #include using namespace std; int main(){ int N; …… 题解列表 2022年02月12日 0 点赞 0 评论 188 浏览 评分:0.0
编程小白能看懂的c++98 摘要:解题思路:注意事项:参考代码:#include #include using namespace std; int main() { int q = 0; cin >> q; char …… 题解列表 2023年01月15日 0 点赞 0 评论 36 浏览 评分:0.0
【密码】 (C++代码) 摘要:解题思路:简单模拟注意事项:参考代码:#include<bits/stdc++.h> using namespace std; char a[52]; int main() { int c…… 题解列表 2019年03月16日 0 点赞 0 评论 331 浏览 评分:0.0
【密码】 (C++代码) 摘要:解题思路:注意四个中的三个我用了暴力判断加sort排序巧妙解决四个中三个的问题注意事项:参考代码:#include <bits/stdc++.h> #include <iostream> usin…… 题解列表 2019年04月28日 0 点赞 0 评论 359 浏览 评分:0.0
c++字符串简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std;int main(){ string str; int n; cin>>n; string …… 题解列表 2023年10月18日 0 点赞 0 评论 53 浏览 评分:0.0