解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s,s1;
cin>>s>>s1;
if(s1.find(s)!=-1)
{
cout<<s<<" is substring of "<<s1;
return 0;
}
if(s.find(s1)!=-1)
{
cout<<s1<<" is substring of "<<s;
return 0;
}
else if(s.find(s1)==-1)
{
cout<<"No substring";
return 0;
}
return 0;
}
0.0分
0 人评分
震宇大神的杀毒软件 (C语言代码)浏览:1348 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:1158 |
【绝对值排序】 (C++代码)浏览:720 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:1432 |
A+B for Input-Output Practice (II) (C语言代码)浏览:1043 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:573 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:956 |
WU-拆分位数 (C++代码)浏览:819 |
大家好,我是验题君浏览:604 |
Tom数 (C语言代码)浏览:758 |