2011年二級C語言上機(jī)真題題庫100道_第1頁
2011年二級C語言上機(jī)真題題庫100道_第2頁
2011年二級C語言上機(jī)真題題庫100道_第3頁
2011年二級C語言上機(jī)真題題庫100道_第4頁
2011年二級C語言上機(jī)真題題庫100道_第5頁
已閱讀5頁,還剩276頁未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)

文檔簡介

1、說明:本題庫是針對2008年4月份考試的上機(jī)考試題庫,本題庫共有100套題目(每套題目包含3道題:一道程序填空題、一道程序修改題、一道程序設(shè)計題),真實(shí)考試的時候,考生輸入準(zhǔn)考證后計算機(jī)隨機(jī)為你抽取一套考試,每個考生考試時只需考一套題目(包含三道題),但由于考試時是隨機(jī)抽題,所以即使把原題庫告訴大家,你也不能知道到時計算機(jī)會給你抽取哪一套題,所以大家只有把全部題庫都理解才能萬無一失) 第01套: 給定程序中,函數(shù)fun的功能是:將形參n所指變量中,各位上為偶數(shù)的數(shù)去 除,剩余的數(shù)按原來從高位到低位的順序組成一個新的數(shù),并通過形參指針n傳回 所指變量。 例如,輸入一個數(shù):27638496,新的數(shù)

2、:為739。 請在程序的下劃線處填入正確的內(nèi)容并把下劃線刪除, 使程序得出正確的結(jié) 果。 注意:源程序存放在考生文件夾下的blank1.c中。 不得增行或刪行,也不得更改程序的結(jié)構(gòu)! 給定源程序: #include void fun(unsigned long *n) unsigned long x=0, i; int t; i=1; while(*n) /*found*/ t=*n % 10; /*found*/ if(t%2!= 0) x=x+t*i; i=i*10; *n =*n /10; /*found*/ *n=x; main() unsigned long n=-1; while(

3、n99999999|n0) printf(please input(0n100000000): ); scanf(%ld,&n); fun(&n); printf(nthe result is: %ldn,n); 解題思路: 第一處:t是通過取模的方式來得到*n的個位數(shù)字,所以應(yīng)填:10。 第二處:判斷是否是奇數(shù),所以應(yīng)填:0。 第三處:最后通形參n來返回新數(shù)x,所以應(yīng)填:x。 * 給定程序modi1.c中函數(shù) fun 的功能是:計算n!。 例如,給n輸入5,則輸出120.000000。 請改正程序中的錯誤,使程序能輸出正確的結(jié)果。 注意:不要改動main函數(shù),不得增行或刪行,也不得更改程序的

4、結(jié)構(gòu)! 給定源程序: #include double fun ( int n ) double result = 1.0 ; /*found*/ if (n = = 0 )return 1.0 ; while( n 1 & n 170 ) /*found*/ result *= n- ;return result ; main ( ) int n ; printf(input n:) ; scanf(%d, &n) ; printf(nn%d! =%lfnn, n, fun(n) ; 解題思路: 第一處:條件語句書寫格式錯誤,應(yīng)改為:if (n=0)。 第二處:語句后缺少分號。 * 請編寫一個

5、函數(shù)fun,它的功能是:將一個數(shù)字字符串轉(zhuǎn)換為一個整數(shù)(不得 調(diào)用c語言提供的將字符串轉(zhuǎn)換為整數(shù)的函數(shù))。例如,若輸入字符串-1234,則 函數(shù)把它轉(zhuǎn)換為整數(shù)值 -1234。函數(shù)fun中給出的語句僅供參考。 注意: 部分源程序存在文件prog1.c文件中。 請勿改動主函數(shù)main和其它函數(shù)中的任何內(nèi)容, 僅在函數(shù)fun的花括號中填 入你編寫的若干語句。 給定源程序: #include #include long fun ( char *p) int i, len, t; /* len為串長,t為正負(fù)標(biāo)識 */ long x=0; len=strlen(p); if(p0=-) t=-1; le

6、n-; p+; else t=1; while(*p) x = x*10-48+(*p+); return x*t; main() /* 主函數(shù) */ char s6; long n; printf(enter a string:n) ; gets(s); n = fun(s); printf(%ldn,n); nono ( ); nono ( ) /* 本函數(shù)用于打開文件,輸入數(shù)據(jù),調(diào)用函數(shù),輸出數(shù)據(jù),關(guān)閉文件。 */ file *fp, *wf ; int i ; char s20 ; long n ; fp = fopen(c:testin.dat,r) ; wf = fopen(c:t

7、estout.dat,w) ; for(i = 0 ; i 10 ; i+) fscanf(fp, %s, s) ; n = fun(s); fprintf(wf, %ldn, n) ; fclose(fp) ; fclose(wf) ; 第02套: 給定程序中,函數(shù)fun的功能是將形參給定的字符串、整數(shù)、浮點(diǎn)數(shù)寫到文本 文件中,再用字符方式從此文本文件中逐個讀入并顯示在終端屏幕上。 請在程序的下劃線處填入正確的內(nèi)容并把下劃線刪除, 使程序得出正確的結(jié) 果。 注意:源程序存放在考生文件夾下的blank1.c中。 不得增行或刪行,也不得更改程序的結(jié)構(gòu)! 給定源程序: #include void

8、fun(char *s, int a, double f) /*found*/ file*fp; char ch; fp = fopen(file1.txt, w); fprintf(fp, %s %d %fn, s, a, f); fclose(fp); fp = fopen(file1.txt, r); printf(nthe result :nn); ch = fgetc(fp); /*found*/ while (!feof(fp) /*found*/ putchar(ch); ch = fgetc(fp); putchar(n); fclose(fp); main() char a1

9、0=hello!; int b=12345; double c= 98.76; fun(a,b,c); 解題思路: 本題是考察先把給定的數(shù)據(jù)寫入到文本文件中,再從該文件讀出并顯示在屏幕上。 第一處:定義文本文件類型變量,所以應(yīng)填:file *。 第二處:判斷文件是否結(jié)束,所以應(yīng)填:fp。 第三處:顯示讀出的字符,所以應(yīng)填:ch。 * 給定程序modi1.c中函數(shù)fun的功能是: 依次取出字符串中所有數(shù)字字符, 形 成新的字符串, 并取代原字符串。 請改正函數(shù)fun中指定部位的錯誤, 使它能得出正確的結(jié)果。 注意: 不要改動main函數(shù), 不得增行或刪行, 也不得更改程序的結(jié)構(gòu)! 給定源程序:

10、#include void fun(char *s) int i,j; for(i=0,j=0; si!=0; i+) if(si=0 & si=9) /*found*/ sj+=si; /*found*/ sj=0; main() char item80; printf(nenter a string : );gets(item); printf(nnthe string is : %sn,item); fun(item); printf(nnthe string of changing is : %sn,item ); 解題思路: 第一處: 要求是取出原字符串中所有數(shù)字字符組成一個新的字符

11、串,程序中是使用變量j 來控制新字符串的位置,所以應(yīng)改為:sj+=si;。 第二處: 置新字符串的結(jié)束符,所以應(yīng)改為:sj=0;. * 請編寫函數(shù)fun, 函數(shù)的功能是: 將m行n列的二維數(shù)組中的字符數(shù)據(jù), 按列的 順序依次放到一個字符串中。 例如, 二維數(shù)組中的數(shù)據(jù)為: w w w w s s s s h h h h 則字符串中的內(nèi)容應(yīng)是: wshwshwsh。 注意:部分源程序在文件prog1.c中。 請勿改動主函數(shù)main和其它函數(shù)中的任何內(nèi)容, 僅在函數(shù)fun的花括號中填入 你編寫的若干語句。 給定源程序: #include #define m 3 #define n 4 void f

12、un(char sn, char *b) int i,j,n=0; for(i=0; i n;i+) /* 請?zhí)顚懴鄳?yīng)語句完成其功能 */ for(j = 0 ; j m ; j+) bn = sji ; n = i * m + j + 1; bn=0; main() char a100,wmn=w,w,w,w,s,s,s,s,h,h,h,h; int i,j; printf(the matrix:n); for(i=0; im; i+) for(j=0;jn; j+)printf(%3c,wij); printf(n); fun(w,a); printf(the a string:n);pu

13、ts(a); printf(nn); nono(); 第03套: 程序通過定義學(xué)生結(jié)構(gòu)體變量,存儲了學(xué)生的學(xué)號、姓名和3門課的成績。所 有學(xué)生數(shù)據(jù)均以二進(jìn)制方式輸出到文件中。函數(shù)fun的功能是重寫形參filename所 指文件中最后一個學(xué)生的數(shù)據(jù),即用新的學(xué)生數(shù)據(jù)覆蓋該學(xué)生原來的數(shù)據(jù),其它學(xué) 生的數(shù)據(jù)不變。 請在程序的下劃線處填入正確的內(nèi)容并把下劃線刪除, 使程序得出正確的結(jié) 果。 注意:源程序存放在考生文件夾下的blank1.c中。 不得增行或刪行,也不得更改程序的結(jié)構(gòu)! 給定源程序: #include #define n 5 typedef struct student long sno;

14、 char name10; float score3; stu; void fun(char *filename, stu n) file *fp; /*found*/ fp = fopen(filename, rb+); /*found*/ fseek(fp, -1l*sizeof(stu), seek_end); /*found*/ fwrite(&n, sizeof(stu), 1, fp); fclose(fp); main() stu tn= 10001,machao, 91, 92, 77, 10002,caokai, 75, 60, 88, 10003,lisi, 85, 70,

15、 78, 10004,fangfang, 90, 82, 87, 10005,zhangsan, 95, 80, 88; stu n=10006,zhaosi, 55, 70, 68, ssn; int i,j; file *fp; fp = fopen(student.dat, wb); fwrite(t, sizeof(stu), n, fp); fclose(fp); fp = fopen(student.dat, rb); fread(ss, sizeof(stu), n, fp); fclose(fp); printf(nthe original data :nn); for (j=

16、0; jn; j+) printf(nno: %ld name: %-8s scores: ,ssj.sno, ); for (i=0; i3; i+) printf(%6.2f , ssj.scorei); printf(n); fun(student.dat, n); printf(nthe data after modifing :nn); fp = fopen(student.dat, rb); fread(ss, sizeof(stu), n, fp); fclose(fp); for (j=0; jn; j+) printf(nno: %ld name: %-8s

17、scores: ,ssj.sno, ); for (i=0; i3; i+) printf(%6.2f , ssj.scorei); printf(n); 解題思路: 本題是考察如何從文件中讀出數(shù)據(jù),再把結(jié)構(gòu)中的數(shù)據(jù)寫入文件中。 第一處:從指定的文件中讀出數(shù)據(jù),所以應(yīng)填:filename。 第二處:讀取文件fp的最后一條記錄,所以應(yīng)填:fp。 第三處:再把讀出的記錄,寫入文件fp指定的位置上,所以應(yīng)填:fp。 * 給定程序modi1.c中的函數(shù)creatlink的功能是創(chuàng)建帶頭結(jié)點(diǎn)的單向鏈表, 并 為各結(jié)點(diǎn)數(shù)據(jù)域賦0到m-1的值。 請改正函數(shù)creatlink中指定部位的錯誤,

18、 使它能得出正確的結(jié)果。 注意: 不要改動main函數(shù), 不得增行或刪行, 也不得更改程序的結(jié)構(gòu)! 給定源程序: #include #include typedef struct aa int data; struct aa *next; node; node *creatlink(int n, int m) node *h=null, *p, *s; int i; /*found*/ p=(node *)malloc(sizeof(node); h=p; p-next=null; for(i=1; idata=rand()%m; s-next=p-next; p-next=s; p=p-ne

19、xt; /*found*/ return h; outlink(node *h) node *p; p=h-next; printf(nnthe list :nn head ); while(p) printf(-%d ,p-data); p=p-next; printf(n); main() node *head; head=creatlink(8,22); 解題思路: 第一處: 指向剛分配的結(jié)構(gòu)指針,所以應(yīng)改為:p=(node *)malloc(sizeof(node); 第二處: 在動態(tài)分配內(nèi)存的下一行語句是,使用臨時結(jié)構(gòu)指針變量h保存p指針的初始位置, 最后返回不能使用p,是因?yàn)閜的位

20、置已經(jīng)發(fā)生了變化,所以應(yīng)改為返回h。 * 請編寫函數(shù)fun, 函數(shù)的功能是:統(tǒng)計一行字符串中單詞的個數(shù),作為函數(shù)值返 回。一行字符串在主函數(shù)中輸入, 規(guī)定所有單詞由小寫字母組成,單詞之間由若干 個空格隔開, 一行的開始沒有空格。 注意:部分源程序在文件prog1.c中。 請勿改動主函數(shù)main和其它函數(shù)中的任何內(nèi)容, 僅在函數(shù)fun的花括號中填入 你編寫的若干語句。 給定源程序: #include #include #define n 80 int fun( char *s) int n=1;while(*s)if(*s= )n+; s+;return n; main() char linen

21、; int num=0; printf(enter a string :n); gets(line); num=fun( line ); printf(the number of word is : %dnn,num); nono(); 解題思路: 本題是統(tǒng)計字符串中的單詞數(shù)。 1. 利用while循環(huán)語句和指針變量,當(dāng)字符為空格時,則單詞數(shù)k加1。 2. 循環(huán)結(jié)束返回k。 參考答案: int fun( char *s) int k = 1 ; while(*s) if(*s = ) k+ ; s+ ; return k ; 第04套: 程序通過定義學(xué)生結(jié)構(gòu)體變量,存儲了學(xué)生的學(xué)號、姓名和3門

22、課的成績。所 有學(xué)生數(shù)據(jù)均以二進(jìn)制方式輸出到文件中。函數(shù)fun的功能是從形參filename所指 的文件中讀入學(xué)生數(shù)據(jù),并按照學(xué)號從小到大排序后,再用二進(jìn)制方式把排序后的 學(xué)生數(shù)據(jù)輸出到filename所指的文件中,覆蓋原來的文件內(nèi)容。 請在程序的下劃線處填入正確的內(nèi)容并把下劃線刪除, 使程序得出正確的結(jié) 果。 注意:源程序存放在考生文件夾下的blank1.c中。 不得增行或刪行,也不得更改程序的結(jié)構(gòu)! 給定源程序: #include #define n 5 typedef struct student long sno; char name10; float score3; stu; voi

23、d fun(char *filename) file *fp; int i, j; stu sn, t; /*found*/ fp = fopen(filename, “rb”); fread(s, sizeof(stu), n, fp); fclose(fp); for (i=0; in-1; i+) for (j=i+1; jsj.sno) t = si; si = sj; sj = t; fp = fopen(filename, wb); /*found*/ fwrite(s, sizeof(stu), n, fp); /* 二進(jìn)制輸出 */ fclose(fp); main() stu

24、 tn= 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, ssn; int i,j; file *fp; fp = fopen(student.dat, wb); fwrite(t, sizeof(stu), 5, fp); fclose(fp); printf(nnthe original data :nn); for (j=0; jn; j+) printf(nno: %ld

25、name: %-8s scores: ,tj.sno, ); for (i=0; i3; i+) printf(%6.2f , tj.scorei); printf(n); fun(student.dat); printf(nnthe data after sorting :nn); fp = fopen(student.dat, rb); fread(ss, sizeof(stu), 5, fp); fclose(fp); for (j=0; jn; j+) printf(nno: %ld name: %-8s scores: ,ssj.sno, ); for

26、(i=0; i。 第三處:把已排序的結(jié)構(gòu)數(shù)據(jù),重新寫入文件,所以應(yīng)填:fwrite。 * 給定程序modi1.c中函數(shù)fun的功能是: 在字符串的最前端加入n個*號, 形成 新串, 并且覆蓋原串。 注意: 字符串的長度最長允許為79。 請改正函數(shù)fun中指定部位的錯誤, 使它能得出正確的結(jié)果。 注意: 不要改動main函數(shù), 不得增行或刪行, 也不得更改程序的結(jié)構(gòu)! 給定源程序: #include #include void fun ( char s, int n ) char a80 , *p; int i; /*found*/ p=s; for(i=0; in; i+) ai=*; do

27、ai=*p; i+; /*found*/ while(*p+); ai=0; strcpy(s,a); main() int n; char s80; printf(nenter a string : ); gets(s); printf(nthe string %sn,s); printf(nenter n ( number of * ) : ); scanf(%d,&n); fun(s,n); printf(nthe string after insert : %s n ,s); 解題思路: 第一處: 指針p應(yīng)指向s,所以應(yīng)改為:p=s;。 第二處: 死循環(huán),當(dāng)do while循環(huán)執(zhí)行一次

28、,臨時變量p應(yīng)該指向字符串的下一位置,所以應(yīng)改為:while(*p+);。 * 請編寫函數(shù)fun,函數(shù)的功能是:統(tǒng)計各年齡段的人數(shù)。n個年齡通過調(diào)用隨機(jī) 函數(shù)獲得,并放在主函數(shù)的age數(shù)組中;要求函數(shù)把0至9歲年齡段的人數(shù)放在d0 中,把10至19歲年齡段的人數(shù)放在d1中,把20至29歲年齡段的人數(shù)放在d2中, 其余依此類推, 把100歲 (含100)以上年齡的人數(shù)都放在d10中。結(jié)果在主函數(shù)中輸出。 注意:部分源程序在文件prog1.c中。 請勿改動主函數(shù)main和其它函數(shù)中的任何內(nèi)容,僅在函數(shù)fun的花括號中填入 你編寫的若干語句。 給定源程序: #include #define n 50

29、 #define m 11 void fun( int *a, int *b) int i, j ; int i,j;for(i = 0 ; i m ; i+) bi = 0 ; for(i=0;im;i+)bi=0;for(i = 0 ; i n ; i+) for(i=0;i 10) bm - 1+ ; else bj+ ; if(j10)bm-1+;else bj+; double rnd() static t=29,c=217,m=1024,r=0; r=(r*t+c)%m; return(double)r/m); main() int agen, i, dm; for(i=0; in

30、;i+)agei=(int)(115*rnd(); printf(the original data :n); for(i=0;in;i+) printf(i+1)%10=0?%4dn:%4d,agei); printf(nn); fun( age, d); for(i=0;i10;i+)printf(%4d-%4d : %4dn,i*10,i*10+9,di); printf( over 100 : %4dn,d10); nono(d); 解題思路: 本題是統(tǒng)計各年齡段的人數(shù)。 1. 初始化各年齡段人數(shù)為0。 2. 使用for循環(huán)以及求出各年齡的十位數(shù)字作為存放人數(shù)的地址,如果大于值大于10

31、,則存入d10中(大于110歲的人)。 參考答案: void fun( int *a, int *b) int i, j ; for(i = 0 ; i m ; i+) bi = 0 ; for(i = 0 ; i 10) bm - 1+ ; else bj+ ; double rnd() static t=29,c=217,m=1024,r=0; r=(r*t+c)%m; return(double)r/m); 第05套: 給定程序中,函數(shù)fun的功能是將參數(shù)給定的字符串、整數(shù)、浮點(diǎn)數(shù)寫到文本 文件中,再用字符串方式從此文本文件中逐個讀入,并調(diào)用庫函數(shù)atoi和atof將 字符串轉(zhuǎn)換成相應(yīng)的

32、整數(shù)、浮點(diǎn)數(shù),然后將其顯示在屏幕上。 請在程序的下劃線處填入正確的內(nèi)容并把下劃線刪除, 使程序得出正確的結(jié) 果。 注意:源程序存放在考生文件夾下的blank1.c中。 不得增行或刪行,也不得更改程序的結(jié)構(gòu)! 給定源程序: #include #include void fun(char *s, int a, double f) /*found*/ file* fp; char str100, str1100, str2100; int a1; double f1; fp = fopen(file1.txt, w); fprintf(fp, %s %d %fn, s, a, f); /*found

33、*/ fclose(fp) ; fp = fopen(file1.txt, r); /*found*/ fscanf(fp,%s%s%s, str, str1, str2); fclose(fp); a1 = atoi(str1); f1 = atof(str2); printf(nthe result :nn%s %d %fn, str, a1, f1); main() char a10=hello!; int b=12345; double c= 98.76; fun(a,b,c); 解題思路: 本題是考察先把給定的數(shù)據(jù)寫入到文本文件中,再從該文件讀出并轉(zhuǎn)換成相應(yīng)的整數(shù)、浮點(diǎn)數(shù)顯示在屏幕上

34、。 第一處:定義文本文件類型變量,所以應(yīng)填:file *。 第二處:關(guān)閉剛寫入的文件,所以應(yīng)填:fclose(fp)。 第三處:從文件中讀出數(shù)據(jù),所以應(yīng)填:fp。 * 給定程序modi1.c中函數(shù)fun的功能是: 對n名學(xué)生的學(xué)習(xí)成績,按從高到低的 順序找出前m(m10)名學(xué)生來, 并將這些學(xué)生數(shù)據(jù)存放在一個動態(tài)分配的連續(xù)存 儲區(qū)中, 此存儲區(qū)的首地址作為函數(shù)值返回。 請改正函數(shù)fun中指定部位的錯誤, 使它能得出正確的結(jié)果。 注意: 不要改動main函數(shù), 不得增行或刪行, 也不得更改程序的結(jié)構(gòu)! 給定源程序: #include #include #include #define n 10

35、typedef struct ss char num10; int s; stu; stu *fun(stu a, int m) stu bn, *t; int i,j,k; /*found*/ t=(stu *)calloc(sizeof(stu),m) ;for(i=0; in; i+) bi=ai; for(k=0; km; k+) for(i=j=0; i bj.s) j=i; /*found*/ tk=bj; bj.s=0; return t; outresult(stu a, file *pf) int i; for(i=0; i10 ) printf(ngive the numb

36、er of the students who have better score: ); scanf(%d,&m); porder=fun(a,m); printf(* the result *n); printf(the top :n); for(i=0; im; i+) printf( %s %dn,porderi.num , porderi.s); free(porder); 解題思路: 第一處: 語句最后缺少分號。 第二處: 應(yīng)該使用方括號,而不是圓括號。 像此類,使用編譯,即可發(fā)現(xiàn)。 * 請編寫函數(shù)fun, 函數(shù)的功能是: 刪去一維數(shù)組中所有相同的數(shù), 使之只剩一 個。數(shù)組中的數(shù)已按

37、由小到大的順序排列,函數(shù)返回刪除后數(shù)組中數(shù)據(jù)的個數(shù)。 例如, 一維數(shù)組中的數(shù)據(jù)是: 2 2 2 3 4 4 5 6 6 6 6 7 7 8 9 9 10 10 10。 刪除后,數(shù)組中的內(nèi)容應(yīng)該是: 2 3 4 5 6 7 8 9 10。 注意:部分源程序在文件prog1.c中。 請勿改動主函數(shù)main和其它函數(shù)中的任何內(nèi)容, 僅在函數(shù)fun的花括號中填入 你編寫的若干語句。 給定源程序: #include #define n 80 int fun(int a, int n) int i, j = 1, k = a0 ; int i,j=1,k=a0;for(i = 1 ; i n ; i+)

38、for(i=1;in;i+)if(k != ai) if(k!=ai)aj+=ai ; aj+=ai;k = ai ; k=ai; aj = 0 ; aj=0;return j ; return j; main() int an=2,2,2,3,4,4,5,6,6,6,6,7,7,8,9,9,10,10,10,10,i,n=20; printf(the original data :n); for(i=0; in; i+)printf(%3d,ai); n=fun(a,n); printf(nnthe data after deleted :n); for(i=0;in;i+)printf(%

39、3d,ai); printf(nn); nono(); 解題思路: 本題是刪除已排序過數(shù)組中的相同數(shù)。 1. 取出數(shù)組中的第1個數(shù)存放在臨時變量k中,再利用for循環(huán)來依次判斷所有的數(shù)。 2. 如果取出的數(shù)和k相比,如果不相同,則仍存放在原數(shù)組中,其中存放的位置由j來控制, 接著把這個數(shù)重新存入k。如果相同,則取下一數(shù)。 參考答案: int fun(int a, int n) int i, j = 1, k = a0 ; for(i = 1 ; i n ; i+) if(k != ai) aj+=ai ; k = ai ; aj = 0 ; return j ; 第06套: 給定程序中,函數(shù)f

40、un的功能是根據(jù)形參i的值返回某個函數(shù)的值。當(dāng)調(diào)用正 確時, 程序輸出: x1=5.000000, x2=3.000000, x1*x1+x1*x2=40.000000 請在程序的下劃線處填入正確的內(nèi)容并把下劃線刪除, 使程序得出正確的結(jié) 果。 注意:源程序存放在考生文件夾下的blank1.c中。 不得增行或刪行,也不得更改程序的結(jié)構(gòu)! 給定源程序: #include double f1(double x) return x*x; double f2(double x, double y) return x*y; /*found*/ doublefun(int i, double x, dou

41、ble y) if (i=1) /*found*/ returnf1(x); else /*found*/ returnf2(x, y); main() double x1=5, x2=3, r; r = fun(1, x1, x2); r += fun(2, x1, x2); printf(nx1=%f, x2=%f, x1*x1+x1*x2=%fnn,x1, x2, r); 解題思路: 本題是根據(jù)給定的公式來計算函數(shù)的值。 第一處:程序中使用雙精度double類型進(jìn)行計算,所以函數(shù)的返回值類型也為double,所以應(yīng)填:double。 第二處:當(dāng)i等于1時,則返回f1函數(shù)的值,所以應(yīng)填:f

42、1。 第三處:如果i不等于1,則返回f2函數(shù)的值,所以應(yīng)填:f2。 * 給定程序modi1.c中函數(shù)fun的功能是: 比較兩個字符串,將長的那個字符串 的首地址作為函數(shù)值返回。 請改正函數(shù)fun中指定部位的錯誤, 使它能得出正確的結(jié)果。 注意: 不要改動main函數(shù), 不得增行或刪行, 也不得更改程序的結(jié)構(gòu)! 給定源程序: #include /*found*/ char *fun(char *s, char *t) int sl=0,tl=0; char *ss, *tt; ss=s; tt=t; while(*ss) sl+; /*found*/ *ss+; while(*tt) tl+;

43、/*found*/ *tt+; if(tlsl) return t; else return s; main() char a80,b80,*p,*q; int i; printf(nenter a string : ); gets(a); printf(nenter a string again : ); gets(b); printf(nthe longer is :nn%sn,fun(a,b); 解題思路: 第一處: 試題要求返回字符串的首地址,所以應(yīng)改為:char *fun(char *s,char *t) 第二處: 取字符串指針ss的下一個位置,所以應(yīng)改為:ss+;。 第三處:取字符串指針tt的下一個位置,所以應(yīng)改為:tt+;。 * 請編寫函數(shù)fun,函數(shù)的功能是: 移動字符串中的內(nèi)容,移動的規(guī)則如下: 把第 1到第m個字符, 平移到字符串的最后, 把第m+1到最后的字符移到字符串的前部。 例如, 字符串中原有的內(nèi)容為: abcdefghijk, m的值為3, 則移動后, 字符串 中的內(nèi)容應(yīng)該是: defghijkabc。 注意:部分源程序在文件prog1.c中。 請勿改動主函數(shù)main和其它函數(shù)中的任何內(nèi)容, 僅在函數(shù)fun的花括號中填入 你編寫的若干語句。 給定源程序: #in

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論