1140:验证子串

#include
#include
#include
#include
using namespace std;
char s1[200];
char s2[200];
int main()
{
    int i=0,j=0;
    gets(s1);
    gets(s2);
    if(strstr(s1,s2)==NULL)
        i=1;
    else printf("%s is substring of %s",s2,s1);
    if(strstr(s2,s1)==NULL)
        j=1;
    else printf("%s is substring of %s",s1,s2);
    if(j==1&&i==1)
        printf("No substring");
    return 0;
}100'

你可能感兴趣的:(1140:验证子串)