t20:使用VC++2010打开考生文件夹下modi1中的解决方案。此解决方案的项目中包含- -个源程序文件 modil.co在此,函数un的功能是:给定n个实数,输出平均值,并统计平均值以上(含平均值)的实数个数。例如。n=8时,输入193.199、 195.673、 195.757. 196.051. 196.092、196.596. 196.579、 196.763. 所得平均值为195.838745,在平均值以上的实数个数应为5。 请改正的错误,使其能得出正确的结果。注意:部分源程序在文件modil.c中。 不要改动main函数,不得增行或珊行,也不得更改程序的结构! #include
#include
#include
int fun(float x[], int n) /************found************/ int j, c=0; float xa=0.0; for (j=0; j
xa) c++; return c; } void main () {float x[100] = {193.199, 195.673, 195.757, 196.051, 196.092, 196.596, 196.579, 196.763}; system("cls"); printf("%d\n", fun (x, 8)); }