题解 | #密码验证合格程序#

密码验证合格程序

https://www.nowcoder.com/practice/184edec193864f0985ad2684fbc86841

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNext()) { // 注意 while 处理多个 case
            String str = in.nextLine();
            boolean isOK = true;
            if (str.length() > 8) {
                if (str.length() - str.replaceFirst("[0-9]", "").replaceFirst("[a-z]", "").replaceFirst("[A-Z]", "").replaceFirst("[\\p{Punct}]", "").length() >= 3) {
                    for (int i = 0; i < str.length() - 3; ++i) {
                        String sub = str.substring(i,i+3);
                        if (str.lastIndexOf(sub) != i) {
                            System.out.println("NG");
                            isOK = false;
                            break;
                        }
                    }
                    if (isOK) {
                        System.out.println("OK");
                    }
                } else {
                    System.out.println("NG");
                }
            } else {
                System.out.println("NG");
            }
        }
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-10 11:31
点赞 评论 收藏
分享
06-12 10:50
门头沟学院 Java
你的不定积分没加C:我怎么在学院群看到了同样的话
点赞 评论 收藏
分享
强大的马里奥:不太可能,我校计算机硕士就业率99%
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务