import java.util.Scanner; public class Dome21 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int M = scanner.nextInt(); for (int i = 0; i < M; i++) { String str = scanner.next(); if (str.length() >= 8 && str.length() <= 16) { int count = 0; if (str.matches(".*[~!@#$%^].*")) count++; if (str.matches(".*[a-z].*")) count++; if (str.matches(".*[A-Z].*")) count++; if (str.matches(".*\\d.*")) count++; if (count>=3) System.out.println("YES"); else System.out.println("NO"); } else { System.out.println("NO"); } } } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1046 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:798 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:723 |
【排队买票】 (C语言代码)浏览:944 |
众数问题 (C语言代码)浏览:911 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:943 |
字符逆序 (C语言代码)浏览:706 |
A+B for Input-Output Practice (VII) (C语言代码)浏览:566 |
Hello, world! (C语言代码)浏览:916 |
永远的丰碑 (C语言代码)浏览:608 |