求两个矩阵的和A+B乘积A*B

问题描述:

求两个矩阵的和A+B乘积A*B

//
#include
void And(int a[][256],int b[][256],int n,int m)
{
int i,j;
printf("两矩阵相加为:\n");
for (i=0;i