下列给定,函数fun的功能是:给定n个实数,输出平均值,并统计平均值以上(含平均值)的实数个数。例如,n=8时,输入193.199、195.673、195.757、196.051、196.092、196.596、196.579、196.763、所得平均值为195.838745,在平均值以上的实数个数应为5。 ”/********found*****/”之后所指的语句有错,请选择下列正确的语句替换。 #include #include #include int fun(float x[], int n) {int j, c=0;float xa=0.0; for (j=0; j xa += x[j]/n; printf("ave =%f\n",xa); for (j=0; j /************found************/ if (x[j] => xa) c++; return c; } 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)); }