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

1033 旧键盘打字 (20 分)

时间:2021-02-19 13:11:20      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:system   ken   targe   key   ring   string   com   sys   ref   

兄弟题1084 Broken Keyboard (20 分),一样的水~。

ps:`当按键都没坏的时候,输入可能为空,要用getline而不能用cin。

bool vis[200];
string a,b;

int main()
{
    getline(cin,a);
    getline(cin,b);
    
    for(auto t:a) vis[t]=true;
    for(auto t:b)
        if(isupper(t) && vis[‘+‘])
            continue;
        else if(!vis[toupper(t)])
            cout<<t;
    cout<<endl;
    //system("pause");
    return 0;
}

1033 旧键盘打字 (20 分)

标签:system   ken   targe   key   ring   string   com   sys   ref   

原文地址:https://www.cnblogs.com/fxh0707/p/14409238.html

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