欢迎来到天天文库
浏览记录
ID:23138064
大小:1.48 MB
页数:77页
时间:2018-11-04
《全国计算机二级C语言改错题题库》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方2011年9月上机改错题1、#include#includetypedefstructaa{intdata;structaa*next;}NODE;intfun(NODE*h){intmax=-1;NODE*p;/***********found**********/p=h;p=h->next;/*h指向的是头节点,题目要求不要头节点,那么我们从第2个结点开始*/while(p){if(p->data
2、>max)max=p->data;/***********found**********/p=h->next;p=p->next;/*链表中的指针后移*/}returnmax;}outresult(ints,FILE*pf){fprintf(pf,"Themaxinlink:%d",s);}NODE*creatlink(intn,intm){NODE*h,*p,*s;inti;h=p=(NODE*)malloc(sizeof(NODE));h->data=9999;for(i=1;i<=n;i++){s=(NODE*)malloc(siz
3、eof(NODE));s->data=rand()%m;s->next=p->next;p->next=s;p=p->next;}p->next=NULL;----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方returnh;}outlink(NODE*h,FILE*pf){NODE*p;p=h->next;fprintf(pf,"THELIST:HEAD");while
4、(p){fprintf(pf,"->%d",p->data);p=p->next;}fprintf(pf,"");}main(){NODE*head;intm;head=creatlink(12,100);outlink(head,stdout);m=fun(head);printf("THERESULT:");outresult(m,stdout);}2、#includedoublefun(intm){doubley=1.0;inti;/**************found**************/for(i
5、=2;i6、{intn=5;printf("Theresultis%lf",fun(n));}3#include#includechar*fun(chartt[]){inti;for(i=0;tt[i];i++)/**********found***********/if(('a'<=tt[i])7、8、(tt[i]<='z'))if(('a'<=tt[i])&&(tt[i]<='z'))/*很明显,这个地方是并且,用&&*//**********found***********/tt[i]+=32;tt[i]-=39、2;/*小写变大写是减去32*/return(tt);}main(){chartt[81];printf("Pleaseenterastring:");gets(tt);printf("Theresultstringis:%s",fun(tt));}4#include----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方#includef10、loatfun(floatnum){ints;floatn,t,pi;t=1;pi=0;n=1;s=1;/**************f
6、{intn=5;printf("Theresultis%lf",fun(n));}3#include#includechar*fun(chartt[]){inti;for(i=0;tt[i];i++)/**********found***********/if(('a'<=tt[i])
7、
8、(tt[i]<='z'))if(('a'<=tt[i])&&(tt[i]<='z'))/*很明显,这个地方是并且,用&&*//**********found***********/tt[i]+=32;tt[i]-=3
9、2;/*小写变大写是减去32*/return(tt);}main(){chartt[81];printf("Pleaseenterastring:");gets(tt);printf("Theresultstringis:%s",fun(tt));}4#include----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方#includef
10、loatfun(floatnum){ints;floatn,t,pi;t=1;pi=0;n=1;s=1;/**************f
此文档下载收益归作者所有