3个学生4门成绩求各自的平均分,并统计各自不及格的门次输出
//求每个学生的平均分和统计不及格门次#include<stdio.h>int main(){void aver(float a[3][4],float b[]);float a[3][4]={{60,70,80,90},{56,89,67,88},{34,78,90,66}};void find(float a[][4],int b[]);float str[3];in...