假设矩阵名称为m,元素类型为整形,nMax为最大元素的值
int nMax = m[0][0];for(int i = 0;i < 3;i++){ for(int j = 0;j < 4;j++) { if(nMax < m[i][j]) { nMax = m[i][j]; } }}