题解 1162: 密码

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

筛选

(字符串).matches("表达式")的使用解题

摘要: ##注意! 本题使用的(字符串).matches("[0-9]"),不过只能判断一个字符位的字符串,**也就是"0"、"1"。并不能直接判断"01"**,所以我是用了 (""+charAt(下标……

解决密码的思路

摘要:解题思路:注意事项:其他字符是有规定的,不能用else取代参考代码:#include<stdio.h>#include<string.h>int main(){int n,len;if(scanf("……

密码 (Java代码)

摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sca……

<真.优质解答>

摘要:解题思路:我们可以设置四个整形变量为a,b,c,d、并将其初始化为0。用来记录分别出现的四种情况,若出现就将1赋值上;题目要求是出现3种或四种情况就是优质密码,所以就有a+b+c+d>=3就输出YES……
优质题解

Frank-密码-题解(Java代码)

摘要:原题链接:[密码](https://www.dotcpp.com/oj/problem1162.html "密码") ### 解题思路 1. 定义一个字符串类型的数组,数组长度设置为m 2.……

密码(C语言)

摘要:解题思路:注意事项:比较简单,没什么好主意的参考代码:#include<stdio.h>#include<string.h>#include <ctype.h>#include<math.h>int ……

求大佬只指点

摘要:```c #include #include int main() { int M;//定义输入M scanf("%d", &M); int i; int type[200] ……