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

密码验证合格程序

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

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    //判断是否存在重复字符串
    private static boolean reStr(String s){
        for(int i=3;i<s.length();i++){
            if(s.substring(i).contains(s.substring(i-3,i))){
                return false;
            }
        }
        return true;
    }
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextLine()) { // 注意 while 处理多个 case
            String s=in.nextLine();
            if(s.length()<=8){
                System.out.println("NG");
                continue;
            }
            
            int a=0,b=0,c=0,d=0;
            boolean err=true;
            char[] ch=s.toCharArray();
            for(int i=0;i<ch.length;i++){
                if(ch[i]>='a'&&ch[i]<='z')
                    a=1;
                else if(ch[i]>='A'&&ch[i]<='Z')
                    b=1;
                else if(ch[i]>='0'&&ch[i]<='9')
                    c=1;
                else if(ch[i]==' '||ch[i]=='\n')
                    err=false;
                else
                    d=1;
            }
            if(a+b+c+d<3)
                System.out.println("NG");
            else if(!err)
                System.out.println("NG");
            else if(reStr(s))
                System.out.println("OK");
            else
                System.out.println("NG");    
        }
    }
}

全部评论

相关推荐

09-13 10:40
门头沟学院 Java
听别人介绍,刷了一堆力扣题,考场上写函数,一直无法通过。赛后才知道要自己写输入输出,力扣害人不浅
Silencer76:输入输出练习题单,请https://www.nowcoder.com/exam/oj?page=1&tab=%E7%AE%97%E6%B3%95%E7%AC%94%E9%9D%A2%E8%AF%95%E7%AF%87&topicId=372
点赞 评论 收藏
分享
真的很糟糕:不一定是你的问题,当然你也可以做的更好一些,继续投相信自己一定会有的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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