题解 | #密码强度等级#

密码强度等级

http://www.nowcoder.com/practice/52d382c2a7164767bca2064c1c9d5361

import java.util.Scanner;
import java.util.regex.Pattern;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        Main sol = new Main();
        String rs = sol.pwdStrength(s);
        System.out.println(rs);
    }

    public String pwdStrength (String s) {
        // 分数
        int fraction = 0;
        // 密码长度
        int s_length = s.length();
        // 含有字母的个数
        int letter_count = s.replaceAll("[^a-zA-Z]", "").length();
        // 含有的数字个数
        int number_count = s.replaceAll("[^0-9]", "").length();
        // 含有的符号个数
        int char_count = s.replaceAll("[0-9a-zA-Z]", "").length();

        // 密码长度得分
        if (s_length <= 4) {
            fraction += 5;
        }
        else if (s_length <= 7) {
            fraction += 10;
        }
        else if (s_length >= 8) {
            fraction += 25;
        }


        // 是否含大小写字母
        boolean upper_letter = Pattern.matches(".*[A-Z]+.*", s);
        boolean lower_letter = s.matches(".*[a-z]+.*");
        // 仅大/小写字母的个数
        int upper_letter_count = s.replaceAll("[^A-Z]", "").length();
        int lower_letter_count = s.replaceAll("[^a-z]", "").length();
        // 含字母-得分
        if (lower_letter && upper_letter) {
            fraction += 20;
        }
        else if (upper_letter_count > 0) {
            fraction += 10;
        }
        else if (lower_letter_count > 0) {
            fraction += 10;
        }
        else if (letter_count == 0) {
            fraction += 0;
        }

        // 数字-得分
        if (number_count == 0) {
            fraction += 0;
        }
        else if (number_count == 1) {
            fraction += 10;
        }
        else if (number_count > 1) {
            fraction += 20;
        }

        // 符号-得分
        if (char_count == 0) {
            fraction += 0;
        }
        else if (char_count == 1) {
            fraction += 10;
        }
        else if (char_count > 1) {
            fraction += 25;
        }

        // 奖励-得分
        if (upper_letter &&
                lower_letter &&
                number_count > 0 &&
                char_count > 0) {
            fraction += 5;
        }
        else if (letter_count > 0 &&
                number_count > 0 &&
                char_count > 0) {
            fraction += 3;
        }
        else if (letter_count > 0 &&
                number_count > 0) {
            fraction += 2;
        }

        if (fraction >= 90) {
            return "VERY_SECURE";
        }
        else if (fraction >= 80) {
            return "SECURE";
        }
        else if (fraction >= 70) {
            return "VERY_STRONG";
        }
        else if (fraction >= 60) {
            return "STRONG";
        }
        else if (fraction >= 50) {
            return "AVERAGE";
        }
        else if (fraction >= 25) {
            return "WEAK";
        }
        else if (fraction >= 0) {
            return "VERY_WEAK";
        }
        return null;
    }
}

全部评论

相关推荐

12-02 14:27
Java
牛可乐121381:好的,谢谢你,韩明轩同学
点赞 评论 收藏
分享
一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务