[PAT解题报告] Password

简单题,给定密码替换的规则——比如把1换成@,把0换成%…… 问有多少个密码没改过。 还有注意输出有单数复数之分。

#include <cstdio>
#include <cstring>
#include <string>
using namespace std;

pair<string,string> a[1002];
char team[22],s[22],p[22];
void modify() {
    strcpy(p, s);
    for (int i = 0; p[i]; ++i) {
        switch(p[i]) {
        case '1':
            p[i] = '@';
            break;
        case '0':
            p[i] = '%';
            break;
        case 'l':
            p[i] = 'L';
            break;
        case 'O':
            p[i] = 'o';
        }
    }
    
}

int main() {
int n, m = 0;
    scanf("%d",&n);
    for (int i = 0; i < n; ++i) {
        scanf("%s%s",team, s);
        modify();
        if (strcmp(p, s)) {
            a[m++] = make_pair((string) team, (string) p);
        }
    }
    if (m) {
        printf("%d\n",m);
        for (int i = 0; i < m; ++i) {
            printf("%s %s\n",a[i].first.c_str(), a[i].second.c_str());
        }
    }
    else {
        if (n == 1) {
            puts("There is 1 account and no account is modified");
        }
        else {
            printf("There are %d accounts and no account is modified\n",n);
        }
    }
    return 0;
}

原题链接: http://www.patest.cn/contests/pat-a-practise/1035
全部评论

相关推荐

白火同学:1、简历可以浓缩成一页,简历简历先要“简”方便HR快速过滤出有效信息,再要“历”用有效信息突出个人的含金量。 2、教育背景少了入学时间~毕业时间,HR判断不出你是否为应届生。 3、如果你的平台账号效果还不错,可以把账号超链接或者用户名贴到对应位置,一是方便HR知道你是具体做了什么内容的运营,看到账号一目了然,二是口说无凭,账号为证,这更有说服力。
面试被问期望薪资时该如何...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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