給定程序MODI1.C中函數(shù)fun的功能是: 計(jì)算s所指字符串中含有t所指字符串的數(shù)目, 并作為函數(shù)值返回。
請(qǐng)改正函數(shù)fun中指定部位的錯(cuò)誤, 使它能得出正確的結(jié)果。
注意: 不要改動(dòng)main函數(shù), 不得增行或刪行, 也不得更改程序的結(jié)構(gòu)!
給定源程序:
#include
#include
#define N 80
int fun(char *s, char *t)
{ int n;
char *p , *r;
n=0;
while ( *s )
{ p=s;
/****
r=p;
while(*r)
if(*r==*p) { r++; p++; }
else break;
/****
if(*r= 0)
n++;
s++;
}
return n;
}
main()
{ char a[N],b[N]; int m;
printf("\nPlease enter string a : "); gets(a);
printf("\nPlease enter substring b : "); gets( b );
m=fun(a, b);
printf("\nThe result is : m = %d\n",m);
}
解題思路:
第一處: 程序中子串是由變量t來實(shí)現(xiàn)的,再根據(jù)下面while循環(huán)體中語句可知,所以應(yīng)改為:r=t;。
第二處: 是判斷相等的條件,所以應(yīng)改為:if(*r==0)。