二級C程序修改2
===========================================
試題說明 :
給定程序MODI1.C中函數(shù) fun 的功能是:將未在字符串s中出
現(xiàn)而在字符串t中出現(xiàn)的字符形成一個(gè)新的字符串放在u中,u中字
符按原字符串中字符順序排列,不去掉重復(fù)字符。
例如,當(dāng)s = "ABCDE",t = "BDFGG"時(shí),
u中的字符串為"FGG"。
請改正函數(shù)fun中的錯誤,使它能得出正確的結(jié)果。注意:不
要改動main函數(shù),不得增行或刪行,也不得更改程序的結(jié)構(gòu)!
程序 :
#include
#include
#include
void fun (char *s, char *t, char *u)
{ int i, j, sl, tl;
sl = strlen(s); tl = strlen(t);
/************found************/
for (i=0; i/************found************/
{ for (j=0; j if (t[i] == s[j]) break;
if (j=sl) *u++ = t[i];
}
/************found************/
u = ’\0’;
}
main()
{ char s[100], t[100], u[100];
clrscr();
printf("\nPlease enter string s:"); scanf("%s", s);
printf("\nPlease enter string t:"); scanf("%s", t);
fun(s, t, u);
printf("The result is: %s\n", u);
}
[NextPage]
所需數(shù)據(jù) :
@2 IN.DAT 010
1,2,3,4,5
6,7,8,9,10
2,3,5,6,7
1,4,6,7,9
11,7,2,4,8
8,7,2,3,5
9,10,3,4,7
8,11,4,6,8
4,3,1,9,7
3,4,8,10,9
#E
@3 $BC02.DAT 005
-9 -7 -5 -3 -1
-7 -4 -1 2 6
6 4 0 -3 0
1 4 -1 -7 -1
-5 -7 -7 5 4
#E
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |