PATB1029 旧键盘(20)(20 分)
Posted hebust
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PATB1029 旧键盘(20)(20 分)相关的知识,希望对你有一定的参考价值。
#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;
}
以上是关于PATB1029 旧键盘(20)(20 分)的主要内容,如果未能解决你的问题,请参考以下文章