//统计学生中A类学生与B类学生各为多少个。A类学生的标准是平均分在80分以上,其余都是B类学生。 #include
using namespace std; #define M 6 #define N 4 void level(int grade[][N], int& A, int& B); void main() { int typeA=0,typeB=0; int array[M][N]={{60,80,90,75},{75,85,65,77},{80,88,90,98},{89,100,78,81}, {62,68,69,75},{85,85,77,91}}; level(array, typeA, typeB); // cout <<" number of type A is " <
<