#include<bits/stdc++.h>
using namespace std;
#define N 1005
int m,n,r;
int a[N][N];
int b[N][N];
int c[N][N];
int main()
{
cin>>m>>n>>r;
for(int i=1;i<=m;i++)
{
for(int j=1;j<=n;j++)
{
cin>>a[i][j];
}
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=r;j++)
{
cin>>b[i][j];
}
}
for(int i=1;i<=m;i++)
{
for(int j=1;j<=r;j++)
{
for(int k=1;k<=n;k++)
{
c[i][j]+=a[i][k]*b[k][j];
}
}
}
cout<<m<<" "<<r<<endl;
for(int i=1;i<=m;i++)
{
for(int j=1;j<=r;j++)
{
cout<<c[i][j]<<" ";
}
cout<<endl;
}
return 0;
}
标签:std,main,int,矩阵,d098,乘法
From: https://www.cnblogs.com/pigAlg/p/17227904.html