版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
PAGEPAGE11一、單選題1.已知數(shù)據(jù)類型定義和變量聲明如下:structsk{inta;floatb;}data[2],*p;若有p=data,則以下對data[0]中成員a的引用中錯(cuò)誤的是。A.data[0]->aB.data->aC.p->aD.(*p).a2.已有數(shù)據(jù)類型定義和變量聲明如下:structperson{intnum;charname[20],sex;struct{intclass;charprof[20];}in;}a={20,"Lining",’M’,{5,"computer"}},*p=&a;下列語句中正確的是。A.printf("%s",a->name);B.printf("%s",p->f);C.printf("%s",*);D.printf("%c",p->in->prof);3.已知有如下的結(jié)構(gòu)類型定義和變量聲明:structstudent{intnum;charname[10];}stu={1,”Mary”},*p=&stu;則下列語句中錯(cuò)誤的是。A.printf(“%d”,stu.num); B.printf(“%d”,(&stu)->num);C.printf(“%d”,&stu->num); D.printf(“%d”,p->num);4.若main函數(shù)中有以下定義、聲明和語句,則不能輸出字符串“England”的語句是。A.puts(x[1].b);B.puts((x+1)->b);C.puts((++x)->b);D.puts((++p)->b);structtest{inta;
char*b;};charx0[]="UnitedstatesofAmerican",x1[]="England";structtestx[2],*p=x;x[0].a=300;x[0].b=x0;x[1].a=400;x[1].b=x1;5.若要使表達(dá)式“P++”無語法錯(cuò)誤,則變量P不能聲明為。A.intP;B.doubleP;C.int*P;D.struct{intx;}P;6.若有定義和聲明typedefenum{green,red,yellow,blue,black}color;colorflower;,則下列語句中正確的是。A.green=red; B.flower=red;C.color=red; D.enum=red;7.以下程序運(yùn)行時(shí)輸出結(jié)果是。A.10B.25C.15D.27#include<stdio.h>#definePI3.14#defineF(y)((y)*(y))#defineP(a)printf("%d",a)main(){intx=PI;P(F(1+2)*x);}參考答案:1~5ABCCD6~10:BD二、填空題1.在用fopen函數(shù)打開一個(gè)已經(jīng)存在的數(shù)據(jù)文件abc時(shí),若要求既可以讀出abc文件中原來的內(nèi)容,也可以用新的數(shù)據(jù)覆蓋文件原來的數(shù)據(jù),則打開模式應(yīng)當(dāng)是。2.設(shè)函數(shù)a的定義如下:voida(){intx=12,y=345;FILE*fp=fopen("my.dat","w");fprintf(fp,"%d%d",x,y);fclose(fp);}已知main函數(shù)中有聲明intx,y;FILE*fp=fopen("my.dat","r");,若需要從文件my.dat中正確地讀出由函數(shù)a寫入的兩個(gè)數(shù)據(jù)并分別保存到變量x和y中,則在main函數(shù)中使用的讀數(shù)據(jù)語句應(yīng)當(dāng)是(要求寫出語句的完整格式)。3.執(zhí)行以下程序段時(shí)輸出結(jié)果是。#include<stdio.h>main(){FILE*fp=fopen("a.dat","w+"); chars[11]={0}; floatx=-1.2345;fprintf(fp,"%6.3f",x);rewind(fp);fgets(s,10,fp);puts(s);fclose(fp);}4.若有宏定義如下:#defineN2#defineY(n)((N+1)*n)則執(zhí)行語句“z=2*(N+Y(N+2));”后z的值是。5.以下程序輸出結(jié)果是。#defineT(x,y,z)x*y*z/4main(){inta=1,b=3,c=5;printf("%d",T(b+a,a*++b,a+b+c));}6.以下程序輸出結(jié)果是。main(){enumcolor{RED,BLUE,WHITE=0,BLACK};char*colorname[]={"red","blue","white","black"}; printf("%s",colorname[BLACK]);}7.以下程序運(yùn)行時(shí),輸出結(jié)果的第一行是,第二行是,第三行是。#include<stdio.h>typedefstructs{intindex;intvalue;}M;main(){staticinti,j,k,c[4][4];Ma[10]={{0,1},{3,2},{5,3},{6,4},{9,5},{15,6},{-1,0}},*p=a,b[10]={{1,1},{3,2},{4,3},{6,4},{10,5},{13,6},{-1,0}},*q=b;while(p->index!=-1){i=p->index/4;j=p->index%4;c[i][j]=p->value;p++;}while(q->index!=-1){i=q->index/4;j=q->index%4;c[i][j]+=q->value;q++;}for(i=0;i<4;i++){for(j=0;j<4;j++)printf("%d",c[i][j]);printf("\n");}}8.以下程序輸出結(jié)果為。#include<stdio.h>structs{inta;structs*next;};main(){inti;staticstructsx[2]={5,&x[1],7,&x[0]},*ptr;ptr=&x[0];for(i=0;i<3;i++){printf("%d",ptr->a);ptr=ptr->next;}}9.以下程序運(yùn)行時(shí),輸出結(jié)果第一行為,第二行為,第三行為。#include<stdio.h>#include<stdlib.h>typedefstructnode{intd;structnode*next;}NODE;NODE*insert(NODE*head,intx,intkey){NODE*s,*p,*q;s=(NODE*)malloc(sizeof(NODE));s->d=key;s->next=NULL;if(head==NULL){ head=s; returnhead;}if(head->d==x){s->next=head;head=s;returnhead;}else{q=head;p=q->next;while((p->d!=x)&&(p->next!=NULL)){q=p; p=p->next;}if(p->d==x){ s->next=p;q->next=s;}else{ s->next=NULL; p->next=s;}returnhead;}}voidprint(NODE*head){if(head==NULL)return;while(head->next!=NULL){printf("%d,",head->d);head=head->next;}printf("%d\n",head->d);}main(){NODE*head=NULL;head=insert(head,0,3);print(head);head=insert(head,3,1);print(head);head=insert(head,4,5);print(head);}10.以下程序運(yùn)行時(shí),輸出結(jié)果第一行為,第二行為,第三行為。#include<stdio.h>#include<stdlib.h>structnode{intd;structnode*next;};structnode*create(void){structnode*head=NULL,*p,*q=NULL;inti;for(i=2;i<=9;i++){p=(structnode*)malloc(sizeof(structnode));p->d=i;p->next=NULL;if(head==NULL)head=p;elseq->next=p;q=p;}return(head);}voidprint(structnode*head){if(head==NULL)return;while(head->next!=NULL){printf("%d,",head->d);head=head->next;}printf("%d\n",head->d);}structnode*delst(structnode*head,int*n){intcount=0;structnode*p,*q,*r;p=r=head;while(p!=NULL){q=p->next;while(q!=NULL){ if((q->d)%(p->d)==0) {r->next=q->next; free(q);count++; q=r->next;}else {r=q;q=q->next;}}p=p->next;}*n=count;return(head);}voidmain(){inty;structnode*head;head=create();print(head);head=delst(head,&y);print(head);printf("%d",y);}11.以下程序運(yùn)行時(shí)輸出到屏幕的結(jié)果是(6)。#include<stdio.h>voidmain(){FILE*fp;intk,n,a[6]={1,2,3,4,5,6};fp=fopen("d2.dat","w");fprintf(fp,"%d%d%d\n",a[0],a[1],a[2]);fprintf(fp,"%d%d%d\n",a[3],a[4],a[5]);fclose(fp);fp=fopen("d2.dat","r");fscanf(fp,"%d%d",&k,&n);printf("%d,%d\n",k,n);fclose(fp);}12.以下程序運(yùn)行時(shí)輸出到屏幕的結(jié)果中第一行是,第二行是。#include<stdio.h>#definef(x,y)y=x*xvoidg(intx,inty){y=x*x;}voidmain(){inta=2,b=0,c=2,d=0;f(a,b);g(c,d);printf("%d\n%d",b,d);}13..以下程序運(yùn)行時(shí)輸出到屏幕的結(jié)果第一行是,第二行是。#include<stdio.h>typedefstructfact{intm,z;}FACT;FACTfun1(FACTt1,FACTt2){FACTt3;t3.m=t1.m*t2.m;t3.z=t1.z*t2.m+t2.z*t1.m;returnt3;}FACTfun2(FACTt){intm,n,k;m=t.m;n=t.z;while(k=m%n){m=n;n=k;}t.m=t.m/n;t.z=t.z/n;returnt;}voidmain(){FACTs,s1={8,4},s2={6,5};s=fun1(s1,s2);printf("%d,%d\n",s.z,s.m);s=fun2(s);printf("%d,%d",s.z,s.m);}參考答案:1.r+2.fscanf(fp,”%d%d”,&x,&y);3.-1.2354.205.136.Blue7.第一行是1104,第二行是3380,第三行是05508.5759.第一行為3,第二行為1,3,第三行為1,3,510.第一行為2,3,4,5,6,7,8,9,第二行為2,3,5,7,第三行為411.123,45612.第一行是4,第二行是013.第一行是64,48,第二行是4,3三、完善程序1.以下程序統(tǒng)計(jì)數(shù)組pu中g(shù)rade的每一個(gè)分值檔次的人數(shù),若程序正確,輸出結(jié)果應(yīng)為:gradenembersofperson221231源程序:#include<stdio.h>typedefstruct{ intid; intgrade;}STUD;voidmain(){ STUDpu[5]={{18,2},{19,2},{17,1},{21,1},{22,3}},*p; inti,gd[5],ct[5]={0},tmp,count; count=1; gd[0]=(1); ct[0]=1; for(p=pu+1;p<pu+5;p++) {tmp=(2); for(i=0;i<count;i++) if(gd[i]==tmp)break; if(i>=count) {gd[count]=tmp; ct[count]=1; count++;} else (3); } printf("gradenembersofperson"); for(i=0;i<count;i++) printf("\n%2d%10d",gd[i],ct[i]); printf("\n");}2.以下程序按結(jié)構(gòu)成員grade的值從大到小對結(jié)構(gòu)數(shù)組pu的全部元素進(jìn)行排序,并輸出經(jīng)過排序后的pu數(shù)組全部元素的值。#include<stdio.h>typedefstruct{ intid; intgrade;}STUD;voidmain(){ STUDpu[10]={{1,4},{2,9},{3,1},{4,5},{5,3},{6,2},{7,8}, {8,6},{9,5},{10,2}};(1)temp; inti,j,k; for(i=0;i<9;i++){k=i;for(j=i+1;j<10;j++)if((2))k=j;if((3)){temp=pu[i];pu[i]=pu[k];pu[k]=temp;}}for(i=0;i<10;i++)printf("\n%2d:%d",pu[i].id,pu[i].grade);printf("\n");}3.設(shè)有一個(gè)單鏈表的結(jié)點(diǎn)定義如下:structnode{ intd; structnode*next;};函數(shù)intcopy_dellist(structnode*head,intx[])的功能為:將head指向的單鏈表中存儲的所有整數(shù)從小到大依次復(fù)制到x指向的整型數(shù)組中并撤銷該鏈表;函數(shù)返回復(fù)制到x數(shù)組中的整數(shù)個(gè)數(shù)。算法:找出鏈表中數(shù)值最小的結(jié)點(diǎn),將其值存儲到x數(shù)組中,再將該結(jié)點(diǎn)從鏈表中刪除,重復(fù)以上操作直到鏈表為空為止。intcopy_dellist(structnode*head,intx[]){ structnode*pk,*pm,*pn,*pj; intdata,k=0; while(head!=0) {pk=head;data=pk->d;pn=pk;while((1)!=0) {pj=pk->next; if((2)<data) {data=pj->d;pm=pk;pn=pj;} pk=pj;}x[k++]=pn->d; if((3))pm->next=pn->next; elsehead=pn->next; free(pn);};}4.設(shè)某鏈表上每個(gè)結(jié)點(diǎn)的數(shù)據(jù)結(jié)構(gòu)為:typedefstructnode{intd;structnode*next;}NODE;函數(shù)NODE*invert(NODE*head)的功能為:將head指向的單鏈表逆置,即原鏈表最后一個(gè)結(jié)點(diǎn)變?yōu)榈谝粋€(gè)結(jié)點(diǎn),原來倒數(shù)第二個(gè)結(jié)點(diǎn)變成第二個(gè)結(jié)點(diǎn),以此類推。在逆置過程中不建立新的鏈表。NODE*invert(NODE*head) {NODE*p,*q,*r;if(head==0||(1))returnhead;p=head;q=p->next;while(q!=0){r=(2);q->next=p;p=q;q=r;}(3)=0;head=(4);returnhead;}5.s1a2b4c03bfun函數(shù)的功能是刪除s指向的鏈表中滿足以下條件的結(jié)點(diǎn):該結(jié)點(diǎn)的編號值是奇數(shù)且存放的字母ASCII編碼值也為奇數(shù)(提示:a的ASCII編碼是97s1a2b4c03b例如,若刪除前的
溫馨提示
- 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)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 銷售年度工作計(jì)劃范文
- 2024年圖像存儲與通訊系統(tǒng)(PACS)項(xiàng)目合作計(jì)劃書
- 外匯廣告宣傳合同
- 商業(yè)秘密保密規(guī)范
- 商業(yè)秘密保密協(xié)議;(2024年版)
- 2024年激光轉(zhuǎn)速測量儀項(xiàng)目合作計(jì)劃書
- 二年級數(shù)學(xué)計(jì)算題專項(xiàng)練習(xí)集錦
- 幼兒園小班音樂《小矮人和大巨人》教案
- 天津住房合同范本
- 苗木中介合同范本
- 冷庫工程特點(diǎn)施工難點(diǎn)分析及對策
- Python-Django開發(fā)實(shí)戰(zhàn)
- 小學(xué)道法小學(xué)道法1我們的好朋友--第一課時(shí)ppt課件
- 路由和波長分配PPT課件
- 光伏組件開路電壓測試記錄
- 配電箱安裝規(guī)范
- AP1000反應(yīng)堆結(jié)構(gòu)設(shè)計(jì)
- 中英文商務(wù)派遣函樣板
- 幼兒園大班主題教案《超市》含反思
- 彎臂車床夾具設(shè)計(jì)說明書
- 企業(yè)員工健康管理存在的問題與解決途徑探討
評論
0/150
提交評論