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

密码验证合格程序

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

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

int main(){
char str[101];
int len,len1,i,j,flag1,flag2,flag3;
int upper,lower,num,other;
while(gets(str)){
    upper=lower=num=other=0;
    flag1=flag2=flag3=1;
    len=strlen(str);
//判断条件一
    if(len<=8)
       flag1=0;

//判断条件二
        for(i=0;i<len;i++)
        {
            if(str[i]>='0'&&str[i]<='9')
                num=1;
            else if(str[i]>='A'&&str[i]<='Z')
                upper=1;
            else if(str[i]>='a'&&str[i]<='z')
                lower=1; 
            else  if(str[i]!='\0'&&str[i]!=' ')
                other=1;  
        }
        if(num+upper+lower+other<3)
            flag2=0;

//判断条件三
        for(i=0;i<len-2;i++)
        {
            for(j=i+1;j<len-2;j++)
            {
                if(str[i]==str[j])
                {
                    len1=1;
                    while(str[i+len1]==str[j+len1])
                        len1++;
                        if(len1>2)
                        {
                        flag3=0;
                        break;
                        }
                }
            }
        }
        if(flag1+flag2+flag3==3)
        printf("OK\n");
        else
        printf("NG\n");
        }
        return 0;
}

全部评论

相关推荐

最近和朋友聊天,她说了句让我震惊的话:"我发现我连周末点外卖都开始'最优解'了,一定要赶在高峰期前下单,不然就觉得自己亏了。"这不就是典型的"班味入侵"吗?工作思维已经渗透到生活的方方面面。
小型域名服务器:啊?我一直都这样啊?我还以为是我爱贪小便宜呢?每次去实验室都得接一杯免费的开水回去,出门都得规划一下最短路径,在宿舍就吃南边的食堂,在实验室就吃北边的食堂,快递只有顺路的时候才取。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务