密码强度等级

密码强度等级

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

import java.util.Scanner;

public class Main 
{
    public String GetPwdSecurityLevel(String pPasswordStr)
    {
        int score = 0;

        boolean number = false;
        boolean upper = false;
        boolean lower = false;
        boolean symbol = false;
        boolean numberOnce = true;
        boolean symbolOnce = true;

        if (pPasswordStr.length() <= 4) {
            score += 5;
        }

        else if (pPasswordStr.length() <= 7) {
            score += 10;
        }
        else {
            score += 25;
        }

        for (char ch : pPasswordStr.toCharArray()) {
            if (ch >= '0' && ch <= '9') {
                if (number && numberOnce) {
                    score += 20;
                    numberOnce = false;
                }
                number = true;
            }
            else if (ch >= 'a' && ch <= 'z') {
                lower = true;
            }
            else if (ch >= 'A' && ch <= 'Z') {
                upper = true;
            }
            else if (
                ch >= 0x21 && ch <= 0x2F || 
                ch >= 0x3A && ch <= 0x40 ||
                ch >= 0x5B && ch <= 0x60 ||
                ch >= 0x7B && ch <= 0x7E) 
            {
                if (symbol && symbolOnce) {
                    score += 25;
                    symbolOnce = false;
                }
                symbol = true;
            }

        }

        if (number && numberOnce) {
            score += 10;
        }
        if (symbol && symbolOnce) {
            score += 10;
        }
        if (lower && upper) {
            score += 20;
        }
        else if (lower || upper) {
            score += 10;
        }
        if (lower && upper && number && symbol) {
            score += 5;
        }
        else if ((lower || upper) && number && symbol) {
            score += 3;
        }
        else if ((lower || upper) && number) {
            score += 2;
        }

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

    public Main() 
    {
        Scanner in = new Scanner(System.in);
        while (in.hasNextLine()) 
        {
            String pPasswordStr = in.nextLine();
            String safelevel = GetPwdSecurityLevel(pPasswordStr);
            System.out.println(safelevel);
        }
    }

    public static void main(String[] args) 
    {
        Main solution = new Main();
    }
}
全部评论

相关推荐

点赞 评论 收藏
分享
沉淀一会:1.同学你面试评价不错,概率很大,请耐心等待; 2.你的排名比较靠前,不要担心,耐心等待; 3.问题不大,正在审批,不要着急签其他公司,等等我们! 4.预计9月中下旬,安心过节; 5.下周会有结果,请耐心等待下; 6.可能国庆节前后,一有结果我马上通知你; 7.预计10月中旬,再坚持一下; 8.正在走流程,就这两天了; 9.同学,结果我也不知道,你如果查到了也告诉我一声; 10.同学你出线不明朗,建议签其他公司保底! 11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
3 收藏 评论
分享
牛客网
牛客企业服务