解题思路:
注意事项:
参考代码:
import java.util.*; public class Main { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int n=Integer.parseInt(scanner.nextLine()); while(n-->0) { String s=scanner.nextLine(); if(s.length()<8 || s.length()>16) {//长度不符合 System.out.println("NO"); }else { boolean flag=false;//该密码是否安全的标志 int count=0; //设立标志,使其判断大小写、数字、特殊字符等都只判断一次 boolean capitalLetter=true,lowerCaseLetter=true,digit=true,specialCharacter=true; for(int i=0;i<s.length();i++) { char c=s.charAt(i); if(c>='A' && c<='Z' && capitalLetter) { count++; capitalLetter=false; }else if(c>='a' && c<='z' && lowerCaseLetter) { count++; lowerCaseLetter=false; }else if(c>='0' && c<='9' && digit) { count++; digit=false; }else if((c=='~' || c=='!' || c=='@' || c=='#' || c=='$' || c=='%' || c=='^') && specialCharacter){ count++; specialCharacter=false; } if(count==3) { System.out.println("YES"); flag=true; break; } } if(!flag) { System.out.println("NO"); } } } } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:627 |
C语言程序设计教程(第三版)课后习题8.8 (C++代码)浏览:583 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:865 |
Tom数 (C语言代码)浏览:784 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:677 |
C语言考试练习题_排列 (C++代码)浏览:713 |
简单的a+b (C语言代码)浏览:676 |
ASCII帮了大忙浏览:797 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:737 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:400 |