簡介: 橋接模式又叫橋梁模式,屬於結構型模式。目的是將抽象與實現分離,使它們都可以獨立的變化,解耦。繼承有很多好處,但是會增加耦合,而橋接模式偏向組合和聚合的方式來共用。 適用場景: 不希望或不適用使用多繼承的場景。 一個類存在2個或更多的 獨立變化維度 , 並且這些維度都需要 獨立擴展 優點: 解 ...
第66套
1.程式填空題
給定程式中,函數fun的功能是:在形參s所指字元串中尋找與參數c相同的字元,併在其後插入一個與之相同的字元。若找不到相同的字元則函數不做任何處理。
例如,s所指字元串為:baacda,c中的字元為a,執行後s所指字元串為:baaaacdaa。
請在下劃線處填入正確的內容並將下劃線刪除,使程式得出正確的結果。
註意:不得增行或刪行,也不得更改程式的結構!
#include <stdio.h> void fun(char *s, char c) { int i, j, n; /**********found**********/ for(i=0; s[i]!=___1___ ; i++) if(s[i]==c) { /**********found**********/ n=___2___ ; while(s[i+1+n]!='\0') n++; for(j=i+n+1; j>i; j--) s[j+1]=s[j]; /**********found**********/ s[j+1]=___3___ ; i=i+1; } } int main() { char s[80]="baacda", c; printf("\nThe string: %s\n",s); printf("\nInput a character: "); scanf("%c",&c); fun(s,c); printf("\nThe result is: %s\n",s); return 0; }
2.程式修改題
給定程式中,函數fun的功能是:將十進位正整數m轉換成k(2<=k<=9)進位數,並按位輸出。
例如,若輸入8和2,則應輸出1000(即十進位數8轉換成二進位表示是1000)。
請改正函數fun中指定部位的錯誤,使它能得出正確的結果。
註意:不要改動main函數,不得增行或刪行,也不得更改程式的結構。
#include <stdio.h> void fun(int m,int k) { int aa[20],i; for (i=0;m;i++) { /************found************/ aa[i]=m/k; m/=k; } /************found************/ for(;i;i--) printf("%d",aa[i]); } int main() { int b,n; printf("\nPlease enter a number and a base:\n"); scanf("%d %d",&n,&b); fun(n,b); printf("\n"); return 0; }
3.程式設計題
編寫函數fun,它的功能是:計算n門課程的平均分,計算結果作為函數值返回。
例如,若有5門課程的成績是:90.5、72、80、61.5、55,則函數值為:71.80。
註意:請勿改動主函數main和其他函數中的任何內容,僅在函數fun的花括弧中填入你編寫的若幹語句。
#include <stdio.h> void NONO(void); float fun(float *a,int n) { } int main() { float score[30]={90.5,72,80,61.5,55},aver; aver=fun(score,5); printf("\nAverage score is: %5.2f\n",aver); NONO(); return 0; } void NONO(void) {/* 本函數用於打開文件,輸入數據,調用函數,輸出數據,關閉文件。 */ FILE *fp, *wf ; int i, j ; float aver, score[5] ; fp = fopen("in.dat","r") ; wf = fopen("out.dat","w") ; for(i = 0 ; i < 10 ; i++) { for(j = 0 ; j < 5 ; j++) fscanf(fp,"%f,",&score[j]) ; aver = fun(score, 5) ; fprintf(wf, "%5.2f\n", aver) ; } fclose(fp) ; fclose(wf) ; }
1.(1)'\0' (2)0 (3)c 2. aa[i]=m%k; for(i=i-1;i>=0;i--) 3. float fun(float *a,int n) { float sum=0.0; int i; for (i=0;i<n;i++) sum+=a[i]; return sum/n; }第66套參考答案
第67套
1.程式填空題
給定程式中,函數fun的功能是:將a和b所指的兩個字元串轉換成面值相同的整數,併進行相加作為函數值返回,規定字元串中只含9個以下數字字元。
例如,主函數中輸入字元串:32486和12345,在主函數中輸出的函數值為:44831。
請在下劃線處填入正確的內容並將下劃線刪除,使程式得出正確的結果。
註意:不得增行或刪行,也不得更改程式的結構!
#include <stdio.h> #include <string.h> #include <ctype.h> #define N 9 long ctod(char *s) { long d=0; while(*s) if (isdigit( *s)) { /**********found**********/ d=d*10+*s-__1__; /**********found**********/ __2__; } return d; } long fun(char *a, char *b) { /**********found**********/ return __3__; } int main() { char s1[N],s2[N]; do { printf("Input string s1 : "); gets(s1); } while (strlen(s1)>N); do { printf("Input string s2 : "); gets(s2); } while (strlen(s2)>N); printf("The result is: %ld\n", fun(s1,s2)); return 0; }
2.程式修改題
給定程式中,函數fun的功能是:計算函數
F(x,y,z)=(x+y)/(x-y)+(z+y)/(z-y)的值。其中x!=y,z!=y。
例如,當x=9,y=11,z=15時,函數值為-3.50。
請改正函數fun中指定部位的錯誤,使它能得出正確的結果。
註意:不要改動main函數,不得增行或刪行,也不得更改程式的結構。
#include <stdio.h> #include <math.h> #define FU(m,n) (m/n) float fun(float a,float b,float c) { float value; /************found************/ value=FU(a+b,a-b)+FU(c+b,c-b); /************found************/ Return(Value); } int main() { float x,y,z,sum; printf("Input x y z: "); scanf("%f%f%f",&x,&y,&z); printf("x=%f,y=%f,z=%f\n",x,y,z); if (x==y||y==z) {printf("Data error!\n");} sum=fun(x,y,z); printf("The result is : %5.2f\n",sum); return 0; }
3.程式設計題
假定輸入的字元串中只包含字母和*號。編寫函數fun,它的功能是:將字元串中的前導*號全部刪除,中間和尾部的*號不刪除。
例如,字元串中的內容為:*****A*BC*DEF*G***,刪除後,字元串的內容應當為:A*BC*DEF*G***。
註意:請勿改動主函數main和其他函數中的任何內容,僅在函數fun的花括弧中填入你編寫的若幹語句。
#include <stdio.h> void NONO(void); void fun(char *a) { } int main() { char s[81]; printf("Enter a string:\n"); gets(s); fun( s ); printf("The string after deleted:\n"); puts(s); NONO(); return 0; } void NONO(void) {/* 本函數用於打開文件,輸入數據,調用函數,輸出數據,關閉文件。 */ FILE *in, *out ; int i ; char s[81] ; in = fopen("in.dat","r") ; out = fopen("out.dat","w") ; for(i = 0 ; i < 10 ; i++) { fscanf(in, "%s", s) ; fun(s) ; fprintf(out, "%s\n", s) ; } fclose(in) ; fclose(out) ; }
1.(1)'0' (2)s++ (3)ctod(a)+ctod(b) 2. value=FU((a+b),(a-b))+FU((c+b),(c-b)); return(value); 3. void fun(char *a) { int i,j; for (i=0;a[i]=='*';i++); for (j=0;a[i]!='\0';i++) a[j++]=a[i]; a[j]='\0'; }第67套參考答案
第68套
1.程式填空題
給定程式中,通過定義學生結構體變數,存儲了學生的學號、姓名和3門課的成績。所有學生數據均以二進位方式輸出到文件中。函數fun的功能是:從形參filename所指的文件中讀入學生數據,並按照學號從小到大排序後,再用二進位方式把排序後的學生數據輸出到filename所指的文件中,覆蓋原來的文件內容。
請在下劃線處填入正確的內容並將下劃線刪除,使程式得出正確的結果。
註意:不得增行或刪行,也不得更改程式的結構!
#include <stdio.h> #define N 5 typedef struct student { long sno; char name[10]; float score[3]; } STU; void fun(char *filename) { FILE *fp; int i, j; STU s[N], t; /**********found**********/ fp = fopen(filename, __1__); fread(s, sizeof(STU), N, fp); fclose(fp); for (i=0; i<N-1; i++) for (j=i+1; j<N; j++) /**********found**********/ if (s[i].sno __2__s[j].sno) { t=s[i]; s[i]=s[j]; s[j]=t; } fp = fopen(filename, "wb"); /**********found**********/ __3__(s, sizeof(STU), N, fp); fclose(fp); } int main() { STU t[N]={ {10005,"ZhangSan", 95, 80, 88}, {10003,"LiSi", 85, 70, 78}, {10002,"CaoKai", 75, 60, 88}, {10004,"FangFang", 90, 82, 87}, {10001,"MaChao", 91, 92, 77}}, ss[N]; int i,j; FILE *fp; fp = fopen("student.dat", "wb"); fwrite(t, sizeof(STU), 5, fp); fclose(fp); printf("\n\nThe original data :\n\n"); for (j=0; j<N; j++) { printf("\nNo: %ld Name: %-8s Scores: ",t[j].sno, t[j].name); for (i=0; i<3; i++) printf("%6.2f ", t[j].score[i]); printf("\n"); } fun("student.dat"); printf("\n\nThe data after sorting :\n\n"); fp = fopen("student.dat", "rb"); fread(ss, sizeof(STU), 5, fp); fclose(fp); for (j=0; j<N; j++) { printf("\nNo: %ld Name: %-8s Scores: ",ss[j].sno, ss[j].name); for (i=0; i<3; i++) printf("%6.2f ", ss[j].score[i]); printf("\n"); } return 0; }
2.程式修改題
給定程式中,函數fun的功能是:依次取出字元串中所有數字字元,形成新的字元串,並取代原字元串。
請改正函數fun中指定部位的錯誤,使它能得出正確的結果。
註意:不要改動main函數,不得增行或刪行,也不得更改程式的結構。
#include <stdio.h> void fun(char *s) { int i,j; for(i=0,j=0; s[i]!='\0'; i++) if(s[i]>='0' && s[i]<='9') /**********found**********/ s[j]=s[i]; /**********found**********/ s[j]="\0"; } int main() { char item[80]; printf("\nEnter a string : "); gets(item); printf("\nThe string is : \"%s\"\n",item); fun(item); printf("\nThe string of changing is :\"%s\"\n",item); return 0; }
3.程式設計題
編寫函數fun,它的功能是:將M行N列的二維數組中的字元數據,按列的順序依次放到一個字元串中。
例如,二維數組中的數據為:
W W W W
S S S S
H H H H
則字元串中的內容應為:WSHWSHWSHWSH。
註意:請勿改動主函數main和其他函數中的任何內容,僅在函數fun的花括弧中填入你編寫的若幹語句。
#include <stdio.h> #define M 3 #define N 4 void NONO(void); void fun(char (*s)[N], char *b) { } int main() { char a[100],w[M][N]={{'W','W','W','W'}, {'S','S','S','S'},{'H','H','H','H'}}; int i,j; printf("The matrix:\n"); for(i=0; i<M; i++) { for(j=0;j<N; j++) printf("%3c",w[i][j]); printf("\n"); } fun(w,a); printf("The A string:\n");puts(a); printf("\n\n"); NONO(); return 0; } void NONO(void) {/* 請在此函數內打開文件,輸入測試數據,調用 fun 函數,輸出數據,關閉文件。 */ FILE *rf, *wf ; int i,j,k ; char a[100],w[M][N], b ; rf = fopen("in.dat","r") ; wf = fopen("out.dat","w") ; for(k = 0 ; k < 10 ; k++) { for(i = 0 ; i < M ; i++) { for(j = 0 ; j < N ; j++) fscanf(rf, "%c", &w[i][j]) ; fscanf(rf, "%c", &b) ; } fun(w, a) ; fprintf(wf, "%s\n", a) ; } fclose(rf) ; fclose(wf) ; }
1.(1)"rb" (2)> (3)fwrite 2. s[j++]=s[i]; s[j]='\0'; 3. void fun(char (*s)[N], char *b) { int i,j,k=0; for (j=0;j<N;j++) for (i=0;i<M;i++) b[k++]=s[i][j]; b[k]='\0'; }第68套參考答案
第69套
1.程式填空題
給定程式中,函數fun的功能是:將N*N矩陣中元素的值按列右移一個位置,右邊被移出矩陣的元素繞回左邊。
例如,N=4,有下列矩陣
21 12 13 24
25 16 47 38
29 11 32 54
42 21 33 10
移動後結果為
24 21 12 13
38 25 16 47
54 29 11 32
10 42 21 33
請在下劃線處填入正確的內容並將下劃線刪除,使程式得出正確的結果。
註意:不得增行或刪行,也不得更改程式的結構!
#include <stdio.h> #define N 4 void fun(int (*t)[N]) { int i, j, x; /**********found**********/ for(i=0; i<___1___; i++) { /**********found**********/ x=t[i][___2___] ; for(j=N-1; j>0; j--) t[i][j]=t[i][j-1]; /**********found**********/ t[i][___3___]=x; } } int main() { int t[][N]={21,12,13,24,25,16,47,38,29,11,32,54,42,21,33,10}, i, j; printf("The original array:\n"); for(i=0; i<N; i++) { for(j=0;j<N;j++) printf("%2d ",t[i][j]); printf("\n"); } fun(t); printf("\nThe result is:\n"); for(i=0; i<N; i++) { for(j=0;j<N;j++) printf("%2d ",t[i][j]); printf("\n"); } return 0; }
2.程式修改題
給定程式中,函數fun的功能是:將p所指字元串中每個單詞的最後一個字母改成大寫。(這裡的“單詞”是指由空格隔開的字元串)。
例如,若輸入:I am a student to take the examination,則應輸出:I aM A studenT tO takE thE examinatioN。
請改正函數fun中指定部位的錯誤,使它能得出正確的結果。
註意:不要改動main函數,不得增行或刪行,也不得更改程式的結構。
#include <stdio.h> #include <ctype.h> #include <string.h> void fun( char *p ) { int k = 0; for( ; *p; p++ ) if( k ) { /**********found***********/ if( p == ' ' ) { k = 0; /**********found***********/ * (p-1) = toupper( *( p - 1 ) ) } } else k = 1; } int main() { char chrstr[64]; int d ; printf( "\nPlease enter an English sentence within 63 letters: "); gets(chrstr); d=strlen(chrstr) ; chrstr[d] = ' ' ; chrstr[d+1] = 0 ; printf("\n\nBefore changing:\n %s", chrstr); fun(chrstr); printf("\nAfter changing:\n %s", chrstr); return 0; }
3.程式設計題
編寫函數fun,它的功能是:對長度為7個字元的字元串,除首、尾字元外,將其餘5個字元按ASCII碼降序排列。
例如,原來的字元串為CEAedca,排序後輸出為:CedcEAa。
註意:請勿改動主函數main和其他函數中的任何內容,僅在函數fun的花括弧中填入你編寫的若幹語句。
#include <stdio.h> #include <string.h> void NONO(void); void fun(char *s,int num) { } int main() { char s[10]; printf("輸入7個字元的字元串:"); gets(s); fun(s,7); printf("\n%s",s); NONO(); return 0; } void NONO(void) { /* 請在此函數內打開文件,輸入測試數據,調用 fun 函數, 輸出數據,關閉文件。 */ char s[10] ; FILE *rf, *wf ; int i = 0 ; rf = fopen("in.dat","r") ; wf = fopen("out.dat","w") ; while(i < 10) { fgets(s,10,rf) ; s[7] = 0 ; fun(s,7); fprintf(wf, "%s\n", s) ; i++ ; } fclose(rf) ; fclose(wf) ; }
1.(1)N (2)N-1 (3)0 2. if( *p ==