H2430819100


私信TA

用户名:dotcpp0794292

访问量:405

签 名:

等  级
排  名 1595
经  验 2750
参赛次数 0
文章发表 44
年  龄 0
在职情况 学生
学  校 贺州学院
专  业 软件工程

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include <stdio.h>

#include <stdlib.h>

#include <string.h>

#define maxn 205

char cmp(char s[],char l[],int k,int q)

{

int i,w=0;

for(i=0;i<=k-q+1;i++)

{

if(l[i]==s[0])

{

int j;

for(j=0,w=i;j<q;j++,w++)

{

if(l[w]!=s[j])

break;

if(j==q-1)

{

printf("%s is substring of %s ",s,l);

exit(0);

}

}

}

}

printf("No substring");

return 0 ;

}


int main()

{

char a[maxn],b[maxn];

scanf("%s\n%s",a,b);

if (strlen(a)<=strlen(b))

        {

        cmp(a,b,strlen(b),strlen(a));

}

else

    {

        cmp(b,a,strlen(a),strlen(b));

}

return 0;


}


 

0.0分

0 人评分

  评论区

  • «
  • »