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

PAT 甲级 A1050 (2019/02/19)

时间:2019-02-24 11:02:28      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:str   false   a10   ++   clu   fgets   strlen   char   cst   

#include<cstdio>
#include<cstring>
char str1[10010], str2[10010]; 
bool HashTable[128];
int main(){
    fgets(str1,10010,stdin);
    fgets(str2,10010,stdin);
    int len1 = strlen(str1);
    int len2 = strlen(str2);
    for(int i = 0; i < len2; i++){
        HashTable[str2[i]] = true; 
    }
    for(int j = 0; j < len1; j++){
        if(HashTable[str1[j]] == false){
            printf("%c", str1[j]);
        }
    }
    return 0;
}

PAT 甲级 A1050 (2019/02/19)

标签:str   false   a10   ++   clu   fgets   strlen   char   cst   

原文地址:https://www.cnblogs.com/zjsaipplp/p/10425241.html

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