Sum of two matrices-C
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios_base :: sync_with_stdio(0);cin.tie(0);cout.tie(0);
// freopen("in.txt","r",stdin);
int mat1[3][3],mat2[3][3];
int i,j;
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
scanf("%d",&mat1[i][j]);
}
}
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
scanf("%d",&mat2[i][j]);
}
}
int mat[3][3];
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
mat[i][j]=mat1[i][j]+mat2[i][j];
}
}
printf("\n");
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
printf("%d ",mat[i][j]);
}
printf("\n");
}
return 0;
}
No comments