某班专题

从键盘任意输入某班20个学生的成绩,打印最高分,并统计不及格学生的人数

int main(void){ /* 从键盘任意输入某班20个学生的成绩,打印最高分,并统计不及格学生的人数 */ int n=20;float score[n];int i;float max;int count;printf("Enter 20 scores:\n");for(i=0;i<n;i++){scanf("%f",&score[i]);}max=score[0];co