题解 1162: 密码

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

筛选

简单易懂(c语言代码)

摘要:```c #include #include int main() { int n; // 用于存储测试用例的数量 int sign[4]; // 用于标记密码中……

密码(简单易解)

摘要:```c #include #include int main(){ int n,i,j,cnt,flag1,flag2,flag3,flag4; char s[100]; sc……

密码(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    int n,i,s[200];    scanf("%d",&n); ……

求大佬只指点

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

密码(C语言)

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

<真.优质解答>

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

解决密码的思路

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