1035 Password (20 分)(C语言)(PAT)

To prepare for PAT, the judge sometimes has to generate random passwords for the users. The problem is that there are always some confusing passwords since it is hard to distinguish 1 (one) from l (L in lowercase), or 0 (zero) from O (o in uppercase). One solution is to replace 1 (one) by @, 0 (zero) by %, l by L, and O by o. Now it is your job to write a program to check the accounts generated by the judge, and to help the juge modify the confusing passwords.

Input Specification:

Each input file contains one test case. Each case contains a positive integer N (≤1000), followed by N lines of accounts. Each account consists of a user name and a password, both are strings of no more than 10 characters with no space.

Output Specification:

For each test case, first print the number M of accounts that have been modified, then print in the following M lines the modified accounts info, that is, the user names and the corresponding modified passwords. The accounts must be printed in the same order as they are read in. If no account is modified, print in one line There are N accounts and no account is modified where N is the total number of accounts. However, if N is one, you must print There is 1 account and no account is modified instead.

Code

This is a basic problem.
You should note when N>1, if no account is modified, the output is complex, and when N=1, it is singular. Otherwise test point 2 will be wrong.

#include <stdio.h>
#include <string.h>
#include <limits.h>
#include <stdlib.h>
#define Size 11
#define UserMaxNum 1005

struct UNode{
    char name[Size], password[Size];
    int flag;
}Users[UserMaxNum];
int main()
{
    int N, k=0;
    scanf("%d", &N);
    for(int i=0;i<N;i++){
        scanf("\n%s %s", Users[i].name, Users[i].password);
        Users[i].flag = 0;

        for(int j=0; j<strlen(Users[i].password); j++){
            switch((Users[i].password)[j]){
                case '1': (Users[i].password)[j] = '@'; Users[i].flag = 1; break;
                case '0': (Users[i].password)[j] = '%'; Users[i].flag = 1; break;
                case 'l': (Users[i].password)[j] = 'L'; Users[i].flag = 1; break;
                case 'O': (Users[i].password)[j] = 'o'; Users[i].flag = 1; break;
                default: break;
            }
        }
    }
    for(int i=0;i<N;i++){
        if(Users[i].flag == 1) k++;
    }
    if(k==0){
        if(N>1) printf("There are %d accounts and no account is modified\n", N);
        else printf("There is %d account and no account is modified\n", N);
    }
    else{
        printf("%d\n", k);
        for(int i=0;i<N;i++){
            if(Users[i].flag == 1) printf("%s %s\n", Users[i].name, Users[i].password);
        }
    }
    return 0;
}
全部评论

相关推荐

king122:专业技能不要写这么多,熟悉和熟练你经不住问,排版有些难看,中间的空隙搞小一点,项目描述的话感觉是从课程中抄下来的,改一改吧,不然烂大街了,每个项目都写一两点,用什么技术实现了什么难点,然后再写一些数字上去像时间又花了90%这样,这样面试会多一些,如果觉得自己的项目还是不够用的话,我有几个大厂最近做过的实习项目,感兴趣的话可以看我简介中的项目地址
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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