绝对正确
2023-09-28 19:44:37
发布于:广东
11阅读
0回复
0点赞
前面的题解以后再来探索吧
#include<bits\stdc++.h>
using namespace std;
int main(){
string s_1 ,s_2;
cin >> s_1 >> s_2;
if (s_1.find(s_2) != -1)
cout << s_2 << " is sudstring of " << s_1;
else if (s_2.find(s_1) != -1)
cout << s_1 << " is sudstring of " << s_2;
else
cout << "No sudstring":
return 0;
}
(欸嘿)
这里空空如也
有帮助,赞一个