You are on page 1of 1

#include<iostream.

h>
#include<process.h>
int main()
{
int A[10][10],B[10][10],C[10][10],m,n,p,q,k,i,j;
cout<<"\nEnter the rows and columns of matrix A:";
cin>>m>>n;
cout<<"\nEnter the rows and columns of matrix B:";
cin>>p>>q;
if(n==p)
{
cout<<"\nEnter the elements of Matrix A:";
for(i=0;i<m;i++)
for(j=0;j<n;j++)
cin>>A[i][j];
cout<<"\nEnter the elements of matrix B:";
for(i=0;i<p;i++)
for(j=0;j<q;j++)
cin>>B[i][j];
cout<<"\nMatrix A is:";
for(i=0;i<m;i++)
{
cout<<"\n";
for(j=0;j<n;j++)
cout<<A[i][j]<<"";
}
cout<<"\nMatrix B is:";
for(i=0;i<p;i++)
{
cout<<"\n";
for(j=0;j<q;j++)
cout<<B[i][j]<<"";
}
cout<<"\nProduct of two matrices:";
for(i=0;i<m;i++)
cout<<"\n";
for(j=0;j<q;j++)
{
C[i][j]=0;
for(k=0;k<n;k++)
C[i][j]=C[i][j]+A[i][j]*B[i][j];
cout<<C[i][j]<<"";
}
}
else
cout<<"\nMatrix are not compatible for multiplication.";
return 0;
}

You might also like