编程题 m 个人的成绩存放在score数组中,请编写函数fun,它的功能是:将低于平均分的人数作为函数值返回,将低于平均分的分数放在below所指的数组中。 例如,当score数组中的数据为10,20,30,40,50,60,70,80,90时,函数返回的人数应该是4,below中的数据应为10,20,30,40。 注意:部分源程序在文件PROG1.C 中 。 请勿改动 main 函数和其他函数中的任何内容,仅在函数 fun 的花括号中填入所编写的若干语句。 #include
#include
#include
#include
int fun(int score[],int m, int below[]) { } void main() { FILE *wf; int i, n,below[9]; intscore[9]={10,20,30,40,50,60,70,80,90}; system("CLS"); n=fun(score,9, below); printf("\nBelow the average score are: "); for(i=0;i