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;
}
全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务