简单易懂(c语言代码) 摘要:```c #include #include int main() { int n; // 用于存储测试用例的数量 int sign[4]; // 用于标记密码中…… 题解列表 2024年09月01日 0 点赞 0 评论 129 浏览 评分:9.9
c++实现密码强度判断; 摘要:```cpp #include #include using namespace std; int main() { bool sign[4];//采用布尔类型,更通俗易懂 …… 题解列表 2021年05月10日 0 点赞 0 评论 475 浏览 评分:9.9
求大佬只指点 摘要:```c #include #include int main() { int M;//定义输入M scanf("%d", &M); int i; int type[200] …… 题解列表 2022年08月24日 0 点赞 0 评论 160 浏览 评分:9.9
1162: 密码(记概论)https://www.dotcpp.com/run/15402142 摘要:解题思路:记解题思路注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m; cin>>m; string nu…… 题解列表 2024年03月13日 0 点赞 0 评论 109 浏览 评分:9.9
密码(Java代码) 摘要:参考代码:import java.util.Scanner; public class 密码 { public static void main(String[] args) { …… 题解列表 2022年01月07日 0 点赞 0 评论 220 浏览 评分:9.9
【密码】-题解(C)思路简洁明了 摘要:首先判断是否满足长度,满足继续判断,不满足输出No 然后判断是否符合字符的要求 ```c #include #include int main(int argc, char cons…… 题解列表 2020年02月09日 0 点赞 0 评论 566 浏览 评分:9.9
密码题解(C代码) 摘要:解题思路:1.输入字符串,判断长度是否为8-16. 2.如果长度为8-16,定义一个数组来存储符合四组条件的个数。 3.循环遍历数组,如果等于0则代表一个条件不成立计数器cnt加一,当cnt大于等于…… 题解列表 2021年05月05日 0 点赞 0 评论 279 浏览 评分:9.9
密码(简单易解) 摘要:```c #include #include int main(){ int n,i,j,cnt,flag1,flag2,flag3,flag4; char s[100]; sc…… 题解列表 2023年02月04日 0 点赞 0 评论 124 浏览 评分:9.9
密码 (C++代码)初级写法,思路简单,欢迎观看~ 摘要:**提要:** ①用string字符串变量来表示输入的密码串 ②把输入的每个字符的ASCII码和允许的四类字符的ASCII码作比较 ![可输出四类字符的ASCII码](/image_editor…… 题解列表 2020年04月06日 0 点赞 0 评论 706 浏览 评分:9.9
解决密码的思路 摘要:解题思路:注意事项:其他字符是有规定的,不能用else取代参考代码:#include<stdio.h>#include<string.h>int main(){int n,len;if(scanf("…… 题解列表 2022年01月20日 0 点赞 0 评论 169 浏览 评分:9.9