(字符串).matches("表达式")的使用解题 摘要: ##注意! 本题使用的(字符串).matches("[0-9]"),不过只能判断一个字符位的字符串,**也就是"0"、"1"。并不能直接判断"01"**,所以我是用了 (""+charAt(下标…… 题解列表 2022年01月11日 0 点赞 0 评论 536 浏览 评分:9.9
解决密码的思路 摘要:解题思路:注意事项:其他字符是有规定的,不能用else取代参考代码:#include<stdio.h>#include<string.h>int main(){int n,len;if(scanf("…… 题解列表 2022年01月20日 0 点赞 0 评论 173 浏览 评分:9.9
纯粹c语言,不要什么函数之类的 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> int main(){ char arr[] = { '~&#…… 题解列表 2022年01月23日 0 点赞 0 评论 91 浏览 评分:0.0
密码 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sca…… 题解列表 2022年02月11日 0 点赞 0 评论 98 浏览 评分:9.9
Hifipsysta- 1162-密码(C++代码) 摘要:```cpp #include #include #include #include using namespace std; int main(){ int N; …… 题解列表 2022年02月12日 0 点赞 0 评论 190 浏览 评分:0.0
<真.优质解答> 摘要:解题思路:我们可以设置四个整形变量为a,b,c,d、并将其初始化为0。用来记录分别出现的四种情况,若出现就将1赋值上;题目要求是出现3种或四种情况就是优质密码,所以就有a+b+c+d>=3就输出YES…… 题解列表 2022年03月24日 0 点赞 1 评论 106 浏览 评分:9.9
#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 评论 331 浏览 评分:0.0
优质题解 Frank-密码-题解(Java代码) 摘要:原题链接:[密码](https://www.dotcpp.com/oj/problem1162.html "密码") ### 解题思路 1. 定义一个字符串类型的数组,数组长度设置为m 2.…… 题解列表 2022年08月01日 0 点赞 0 评论 419 浏览 评分:0.0
密码(C语言) 摘要:解题思路:注意事项:比较简单,没什么好主意的参考代码:#include<stdio.h>#include<string.h>#include <ctype.h>#include<math.h>int …… 题解列表 2022年08月21日 0 点赞 0 评论 76 浏览 评分:0.0
求大佬只指点 摘要:```c #include #include int main() { int M;//定义输入M scanf("%d", &M); int i; int type[200] …… 题解列表 2022年08月24日 0 点赞 0 评论 166 浏览 评分:9.9