1033

作者: 峡迩 | 来源:发表于2017-08-21 17:44 被阅读0次
    
    #include "stdafx.h"
    
    #include<iostream>
    #include<string>
    
    
    using namespace std;
    
    inline bool check_tmp(string bad_key, char c)
    {
        char tmp = c;
        if (isalpha(c))
            tmp = toupper(c);
    
        if (bad_key.find(tmp) == string::npos)
            return true;
        else
            return false;
    }
    
    bool check(string bad_key,char c)
    {
        if (bad_key.find('+') == string::npos)
        {
            return check_tmp(bad_key, c) ? true : false;
        }
        else
        {
            if (isupper(c))     //isalpha 字母(包括大写、小写)islower(小写字母)isupper(大写字母)isalnum(字母大写小写+数字)isblank(space和\t)isspace(space、\t、\r、\n)
                return false;
            return check_tmp(bad_key, c) ? true : false;
        }
    }
    
    int main()
    {
        string bad_keyboard;
        string input_string;
        string out_string;
    
        cin >> bad_keyboard >> input_string;
    
        for (auto r : input_string)
        {
            if (check(bad_keyboard,r))
            {
                out_string = out_string + string(1, r);
            }
        }
    
        if (out_string.size() == 0)
            cout << endl;
        else
            cout << out_string;
    
        //toupper('_')被转为95!
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:1033

          本文链接:https://www.haomeiwen.com/subject/tfrhdxtx.html