题解
2023-09-08 09:57:19
发布于:广东
8阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
string a,b,c,d;
cin >> a >> b >> c;
d=a+b;
if (d.find(c)!=-1)
cout << c << " is substring of " << a << " and " << b;
else
cout << c << " is not substring of " << a << " and " << b;
return 0;
}
这里空空如也
有帮助,赞一个