1、《C语言程序设计》上机考试复习题1.编写程序:输入m个人的成绩并存放在score数组中,求低于平均分的人数,将低于平均分的分数放在below数组中。例如,当score数组中的数据为10、20、30、40、50、60、70、80、90时,人数应该是4,below中的数据应为10、20、30、40。#include #include #include #include int fun(int score[],int m, int below[]){}void main(){
2、 int i, n, below[9]; int score[9]={10,20,30,40,50,60,70, 80,90}; system("CLS"); n=fun(score, 9, below); printf("Below the average score are: "); for(i=0;i
5、#include int fun(int score[],int m, int below[]){}void main(){ int i, n, below[9]; int score[9]={10,20,30,40,50,60,70, 80,90}; system("CLS"); n=fun(score, 9, below); printf("Below the average score are: "); for(i=0;i
6、[i]);}int fun(int score[],int m, int below[]){ int i,j=0; float av=0.0; for(i=0;i