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

1029 旧键盘

时间:2020-02-18 12:51:58      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:out   mamicode   img   字符串   slow   inf   turn   clu   space   

水题。与B1093 字符串A+B 类似。

#include<iostream>
#include<cctype>
using namespace std;
 
bool  hashtable[300] = {false};
int main() {
    string str1,str2;
    cin>>str1>>str2;
    for(int i = 0; i < str1.size(); ++i)//把str1,str2的小写字母转成大写字母
        if(islower(str1[i]))
            str1[i]-=32;
    for(int i = 0; i < str2.size(); ++i) {
        if(islower(str2[i]))
            str2[i]-=32;
        hashtable[str2[i]] = true; //标记非坏键 
    }
    for(int i = 0; i < str1.size(); ++i) {
        if(hashtable[str1[i]] == false) { 
            cout<<str1[i];//输出坏键
            hashtable[str1[i]] = true;//标记已访问 
        }
    }
    return 0;
}

技术图片

 

1029 旧键盘

标签:out   mamicode   img   字符串   slow   inf   turn   clu   space   

原文地址:https://www.cnblogs.com/keep23456/p/12325582.html

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