题解 | #字符串字符匹配#

字符串字符匹配

https://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93

#include <bits/stdc++.h>
using namespace std;

int main() {
    string s, t;
    getline(cin, s);
    getline(cin, t);
    int judger = 0;
    int count = 0;
    for(int i=0; i<s.size(); i++){
        judger = 0;
        for(int j=0; j<t.size(); j++){
            if(s[i] == t[j]){ judger = 1; break;}
        }
        if(judger == 1){ count += 1;}
        //else {cout << "false" << endl; break;}
    }
    if(count == s.size()) cout << "true" << endl;
    else cout << "false" << endl;
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

感性的干饭人在线蹲牛友:🐮 应该是在嘉定这边叭,禾赛大楼挺好看的
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务