资源描述:
《实验7 数组的应用(参考答案).doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验七数组的应用(参考答案)[实验任务一]:程序跟踪调试实例7-1:error7_1.c参考答案程序跟踪调试实例7-2:error7_2.c参考答案[实验任务二]:程序填空实例7-1:blank7_1.c参考答案程序填空实例7-2:blank7_2.c参考答案程序填空实例7-3:blank7_3.c参考答案程序填空实例7-4:blank7_4.c参考答案程序填空实例7-5:blank7_5.c参考答案[实验任务三]:编程实例7-1:meld.c参考答案编程实例7-2:DtoB.c参考答案编程实例7-3:match.c参考答案编程实例7-4:matrix.c参考答案编程实例7-5:rewrite
2、.c参考答案编程实例7-6:string.c参考答案编程实例7-7:phalanx.c参考答案编程实例7-8:yanghui.c参考答案[实验任务四]:设计程序实例7-1:学生成绩统计cjtj.c(一维数组和函数综合编程练习)参考答案#include#defineARR_SIZE30intReadScore(intnum[],floatscore[]);intGetFail(intnum[],floatscore[],intn);floatGetAver(floatscore[],intn);intGetAboveAver(intnum[],floatscore[],intn
3、);voidGetDetail(floatscore[],intn);voidmain(){intn,num[ARR_SIZE],fail,aboveAver;floatscore[ARR_SIZE];printf("Pleaseenternumandscoreuntilscore<0:");n=ReadScore(num,score);printf("Totalstudents:%d",n);fail=GetFail(num,score,n);printf("Failstudents=%d",fail);aboveAver=GetAboveAver(num,score,n);pr
4、intf("Aboveaverstudents=%d",aboveAver);GetDetail(score,n);}/*函数功能:从键盘输入一个班学生某门课的成绩及其学号,当输入成绩为负值时,输入结束函数参数:整型数组num,存储学生学号 ;实型数组score,存储学生成绩函数返回值:学生总数*/intReadScore(intnum[],floatscore[]){inti=0;scanf("%d%f",&num[i],&score[i]);while(score[i]>=0){i++;scanf("%d%f",&num[i],&score[i]);}returni;}/*函数功能:统
5、计不及格人数并打印不及格学生名单函数参数:整型数组num,存储学生学号实型数组score,存储学生成绩整型变量n,学生总数函数返回值:不及格人数*/intGetFail(intnum[],floatscore[],intn){inti,count;printf("Fail:number--score");count=0;for(i=0;i6、型变量n,学生总数函数返回值:平均分*/floatGetAver(floatscore[],intn){inti;floatsum=0;for(i=0;i7、r(score,n);printf("aver=%f",aver);printf("Aboveaver:number--score");count=0;for(i=0;i=aver){printf("%d------%.0f",num[i],score[i]);count++;}}returncount;}/*函数功能:统计各分数段的学生人数