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

密码验证合格程序

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

#include <stdio.h>
#include <string.h>
#include <ctype.h>

int validatePassword(char *input){
    int len = strlen(input);
    if (len < 8){
        printf("NG\n");
        return 0;
    }

    int upper = 0;
    int lower = 0;
    int digit = 0;
    int othersymbol = 0;
    for (int i = 0; i < len; i++){
        if (isupper(input[i])) upper = 1;
        else if (islower(input[i])) lower = 1;
        else if (isdigit(input[i])) digit = 1;
        else othersymbol = 1;
    }
    if (upper + lower + digit + othersymbol < 3) {
        printf("NG\n");
        return 0;
    }

    for (int i = 0; i < len - 4; i++) {
        for (int j = i + 1; j < len - 3; j++) {
            if ((input[i] == input[j]) && (input[i+1] == input[j+1]) && (input[i+2] == input[j+2])) {
                printf("NG\n");
                return 0;
            }
        }
    }
    return 1;
}

int main(){
    char input[100];
    while (scanf("%s", input) != EOF) {
        if(validatePassword(input)) {
            printf("OK\n");
        }
    }
    return 0;
}

全部评论

相关推荐

11-01 08:48
门头沟学院 C++
伤心的候选人在吵架:佬你不要的,能不能拿户口本证明过户给我。。球球了
点赞 评论 收藏
分享
11-15 17:19
湖南大学 Java
成果成果成果果:这是哪个公司的hr,这么离谱吗,我没见过用性别卡技术岗的,身边女性同学拿大厂offer的比比皆是
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务