在C++中,要求输入两个字符串,判断第二个字符串是不是第一个字符串的子串。如果是,输出Yes,否则

2024-11-23 05:31:18
推荐回答(1个)
回答1:

//#include "stdafx.h"//If the vc++6.0, with this line.
#include 
#include 
using namespace std;
int main(int argc,char *argv[]){
    string s1,s2;
    cout << "Input 2 strings...\n";
    cin >> s1 >> s2;
    cout << (s1.find(s2)!=string::npos ? "Yes" : "No") << endl;
    return 0;
}