下列给定程序中,函数fun的功能是:将s所指字符串中最后一次出现的与t1所指字符串相同的子串替换成t2所指字符串,所形成的新串放在w所指的数组中。要求t1和t2所指字符串的长度相同。 例如,当s所指字符串中的内容为“abcdab-fabc”,t1所

admin2016-12-06  29

问题 下列给定程序中,函数fun的功能是:将s所指字符串中最后一次出现的与t1所指字符串相同的子串替换成t2所指字符串,所形成的新串放在w所指的数组中。要求t1和t2所指字符串的长度相同。
    例如,当s所指字符串中的内容为“abcdab-fabc”,t1所指串中的内容为“ab”,t2所指子串中的内容为“99”时,结果在W所指的数组中的内容应为“abcdabf99c”。
    请改正程序中的错误,使它能得出正确的结果。
    注意:不要改动main函数,不得增行或删行,也不得更改程序的结构!
试题程序:
1   #include<conio.h>
2   #include<stdio.h>
3   #include<string.h>
4   void fun(char * s,char t1,char t2,char w)
5   {
6    char* p,*r,*a;
7    strcpy(w,s);
8    /*********found*********/
9    while(w)
10    {
11    p=w;
12    r=t1;
13    while(*r)
14   /*********found*********/
15    IF(*r==*p)
16    {
17    r++;
18    p++;
19    }
20    else
21    {
22    break;
23    }
24    if(*r==’\0’)
25    a=w;
26    w++;
27    }
28    r=t2;
29    while(*r)
30    {
31    *a=*r;
32    a++;
33    r++;
34    }
35 }
36   main()
37   {
38    char s[100],t1[100],t2[100],w[100];
39    printf(’’\nPlease enter string s:’’);
40    scanf(’’%s’’,s);
41    printf(’’\nPlease enter substring tl:’’);
42    scanf(’’%s’’,t1);
43   print f(’’\nPlease enter substring t2:’’);
44    scanf(’’%s’’,t2);
45    if(strlen(t1)==strlen(t2))
46    {
47    fun(s,t1,t2,w);
48    printf(’’\nThe result is:%s\n’’,w);
49    }
50    else
51    {
52    printf(’’\nError:strlen(t1)!=strlen(t2)\n’’);
53    }
54  }

选项

答案(1)while(*w) (2)it(*r==*p)

解析 (1)此处要判断的是值的真假,而不是地址,所以改为while(*w)。
(2)C语言中关键字区分大小写,只需运行程序,就可以根据错误提示找到。
转载请注明原文地址:https://jikaoti.com/ti/JLi0FFFM
0

最新回复(0)