从键盘输入两个字符串A和B(A,B未指定),要求用C++编写一个程序判断A是

2024-12-27 09:29:07
推荐回答(1个)
回答1:

#include "stdafx.h"
#include
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string a;
string b;
cout << "输入字符串A:";
cin >> a;
cout << "输入字符串B:";
cin >> b;
if (a.find(b) < a.length())
{
cout << "a中包含b" << endl;
}
else
{
cout << "a中不包含b" << endl;
}
system("PAUSE");
return 0;
}

// VS2013中测试通过!!