H2430819100


私信TA

用户名:dotcpp0794292

访问量:559

签 名:

东风吹破少年事,从此再无赤子心

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

  自我简介:

解题思路:

注意事项:

参考代码:

#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 人评分

  评论区

  • «
  • »