码迷,mamicode.com
首页 > 其他好文 > 详细

【PAT】B1029 旧键盘(20)(20 分)

时间:2018-08-18 18:34:15      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:names   for   using   turn   char s   输入   scanf   pre   lse   

#include<cstdio>
#include<string.h>
#include<ctype.h>
char str1[81],str2[81];
using namespace std;
bool shuru[200],shiji[200];
int main(){
    scanf("%s",str1);
    scanf("%s",str2);
    for(int i=0;i<strlen(str2);i++){
        shiji[str2[i]]=true;
    }
    for(int i=0;i<strlen(str1);i++){
        if(shuru[str1[i]]!=true&&shiji[str1[i]]==false){//如果输入了,而且没有输出过
            shuru[str1[i]]=true;
            if(islower(str1[i])){
                if(shiji[str1[i]]==false&&shuru[str1[i]-32]==false){
                    printf("%c",str1[i]-32);
                    shuru[str1[i]-32]=true;
                }
                continue;
            }
            printf("%c",str1[i]);
        }
    }
    return 0;
}

【PAT】B1029 旧键盘(20)(20 分)

标签:names   for   using   turn   char s   输入   scanf   pre   lse   

原文地址:https://www.cnblogs.com/hebust/p/9498069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!