Write a C++ Program to Multiply Two Matrix Using Multi-dimensional Arrays. You can use int or double
2D array and takes it input from user. This program takes two matrices of order r1*c1 and r2*c2
respectively. Then, the program multiplies these two matrices (if possible) and displays it on the screen,
please take input from user.
#include <iostream>
using namespace std;
int main() {
//loop variable i to iterate rows and j to iterate columns.
int row1, col1, row2, col2, i, j, k;
//Declaring the 3 matrices (2D arrays) m1-first matrix, m2- second matrix and pro- stores the multiplication of the two matrices
int m1[10][10], m2[10][10], pro[10][10];
cout << "\n\nEnter the number of Rows and Columns of first matrix : ";
cin >> row1 >> col1;
cout << "\n\nEnter the number of Rows and Columns of second matrix : ";
cin >> row2 >> col2;
//Matrix multiplication property
if (col1 == row2) {
cout << "\nEnter the " << row1 * col1 << " elements of first matrix : \n";
for (i = 0; i < row1; i++) {
for (j = 0; j < col1; j++) {
cin >> m1[i][j];
}
}
cout << "\nEnter the " << row2 * col2 << " elements of second matrix : \n";
for (i = 0; i < row2; i++) {
for (j = 0; j < col2; j++) {
cin >> m2[i][j];
}
}
// cout << "\n\n"
//calculating the Product matrix - containing #rows and #columns of the 1st and the 2nd matrix respectively.
for (i = 0; i < row1; i++) {
for (j = 0; j < col2; j++) {
pro[i][j] = 0;
for (k = 0; k < col1; k++)
pro[i][j] = pro[i][j] + (m1[i][k] * m2[k][j]);
}
}
cout << "\n\nThe first matrix is : \n";
for (i = 0; i < row1; i++) {
for (j = 0; j < col1; j++) {
cout << m1[i][j] << " ";
}
cout << endl;
}
cout << "\n\nThe second matrix is : \n";
for (i = 0; i < row2; i++) {
for (j = 0; j < col2; j++) {
cout << m2[i][j] << " ";
}
cout << endl;
}
cout << "\n\nThe Product matrix is : \n";
for (i = 0; i < row1; i++) {
for (j = 0; j < col2; j++) {
cout << pro[i][j] << " ";
}
cout << endl;
}
} else {
cout << "\n\nMatrix multiplication can't be done as the indices do not match!";
}
cout << "\n\n";
return 0;
}
Comments
Leave a comment