题解 1162: 密码

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

【密码】 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){    char a[100];    in……

【密码】-题解(C语言代码)

摘要:#include #include #include #include int main() { int a,c,d,sum,x,s[4]; //s数组用来记录特殊字符出现的次数 ……

【密码】 (C语言代码)

摘要:解题思路:我这个办法比较笨,就是计数,设置四个变量分别标记是否有数字,大写,小写以及特殊符号,判断依据是第一次遇到时变为1;结束后看四个变量的和是否小于三;当然密码过短或过长一开始就要判断。注意事项:……

密码-题解(Python代码)

摘要:```python m=int(input()) for i in range(0,m): #输入m行密码 s=input() if len(s)>=8 and len(s)=……

编写题解 1162: 密码(C++)

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() {     int ……

Mark11:令人无语的代码

摘要:解题思路:        首先定义两个变量secret_a和secret_b。                当secret_a==1时,密码的长度不小于8且不大于16;