二級C程序修改2
===========================================
試題說明 :
給定程序MODI1.C中函數 fun 的功能是:將未在字符串s中出
現而在字符串t中出現的字符形成一個新的字符串放在u中,u中字
符按原字符串中字符順序排列,不去掉重復字符。
例如,當s = "ABCDE",t = "BDFGG"時,
u中的字符串為"FGG"。
請改正函數fun中的錯誤,使它能得出正確的結果。注意:不
要改動main函數,不得增行或刪行,也不得更改程序的結構!
程序 :
#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]
程序 :
#include
#include
void fun(int a[], int b[], int c[], int n)
{
}
main()
{ int i, a[100]={1,3,5,7,8}, b[100]={2,3,4,5,8}, c[100];
clrscr();
fun(a, b, c, 5);
printf("The result is: ");
for (i=0; i<5; i++) printf("%d ", c[i]);
printf("\n");
NONO();
}
NONO ( )
{/* 本函數用于打開文件,輸入數據,調用函數,輸出數據,關閉文件。 */
FILE *rf, *wf ;
int a[100], b[100], c[100], i, j ;
rf = fopen("in.dat", "r") ;
wf = fopen("bc02.dat","w") ;
for(i = 0 ; i < 5 ; i++) {
for(j = 0 ; j < 5 ; j++) fscanf(rf, "%d,", &a[j]) ;
for(j = 0 ; j < 5 ; j++) fscanf(rf, "%d,", &b[j]) ;
fun(a, b, c, 5) ;
for(j = 0 ; j < 5 ; j++) fprintf(wf, "%d ", c[j]) ;
fprintf(wf, "\n") ;
}
fclose(rf) ;
fclose(wf) ;
}
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內蒙古 |