问答题
m个人的成绩存放在score数组中,请编写函数fun(),它的功能是:将低于平均分的人数作为函数值返回,将低于平均分的分数放在below所指的数组中。
例如,当score数组中的数据为10,20,30,40,50,60, 70,80,90时,函数返回的人数应该是4,below中的数据应为10,20,30,40。
注意:部分源程序给出如下。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。
试题程序:
#include <conio.h>
#include <stdio.h>
#include <string.h>
int fun(int score[],int m, int below[])
{
}
main()
{
iht i, n, below[9];
int score[9]={10,20,30,40,50,60,70,
80,90};
clrscr();
n=fun(score, 9, below);
printf("\nBelow the average score are: ");
for(i=0;i<n;i++)
printf("%d",below[i]);
}
【参考答案】
int fun(int score[],int m, int below[]) { int i,j=0; float......
(↓↓↓ 点击下方‘点击查看答案’看完整答案 ↓↓↓)