第 1 頁:填空題 |
第 2 頁:改錯(cuò)題 |
第 3 頁:程序題 |
例如,當(dāng)s所指字符串中的內(nèi)容為:"abcdabfab",t1所指子串中的內(nèi)容為: "ab",t2所指子串中的內(nèi)容為:"99"時(shí), 結(jié)果在w所指的數(shù)組中的內(nèi)容應(yīng)為: "99cd99f99"。
請(qǐng)改正程序中的錯(cuò)誤,使它能得出正確的結(jié)果。
注意:不要改動(dòng)main函數(shù),不得增行或刪行,也不得更改程序的結(jié)構(gòu)!
給定源程序:
#include
#include
void fun (char *s, char *t1, char *t2 , char *w)
{
char *p , *r, *a;
strcpy(w, s);
while (*w)
{p = w; r = t1;
/************found************/
while (r)
if (*r == *p) {r++; p++;}
else break;
if (*r == '\0')
{a = w; r = t2;
while (*r){
/************found************/
*a = *r; a++; r++
}
w += strlen(t2);
}
else w++;
}
}
main()
{
char s[100], t1[100], t2[100], w[100];
printf("\nPlease enter string S:"); scanf("%s", s);
printf("\nPlease enter substring t1:"); scanf("%s", t1);
printf("\nPlease enter substring t2:"); scanf("%s", t2);
if (strlen(t1)==strlen(t2)) {
fun(s, t1, t2, w);
printf("\nThe result is : %s\n", w);
}
else printf("Error : strlen(t1) != strlen(t2)\n");
}
解題答案:
/************found************/
while(*r)
/************found************/
*a=*r; a++; r++;
******************************************
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |