程序不全 麻烦补一下........
对于矩阵A[m][n]和B[M][N],其中m≤80,n≤80,先读入m和n,然后读入该矩阵的全部元素,求这两个矩阵的积C[M][K]。输出矩阵C。#define M 80
#define N 80
typedef int MatType[M][N];
void MutMat(MatType A,MatType B,MatType C,int m,int n,int k)
{
int i,j,l;
for(i=0; i<m; i++)
for(j=0; j<k; j++)
{
C[i][j]=0;
for(l=0; l<n; l++)
C[i][j]=C[i][j]+A[i][l]*B[l][j];
}
}