Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Two Matrices using Multi-dimensional Arrays #84

Open
wants to merge 89 commits into
base: pbisaria007-patch-1
Choose a base branch
from

Conversation

BuggySumit
Copy link

#include
using namespace std;

int main()
{
int r, c, a[100][100], b[100][100], sum[100][100], i, j;

cout << "Enter number of rows (between 1 and 100): ";
cin >> r;

cout << "Enter number of columns (between 1 and 100): ";
cin >> c;

cout << endl << "Enter elements of 1st matrix: " << endl;

// Storing elements of first matrix entered by user.
for(i = 0; i < r; ++i)
   for(j = 0; j < c; ++j)
   {
       cout << "Enter element a" << i + 1 << j + 1 << " : ";
       cin >> a[i][j];
   }

// Storing elements of second matrix entered by user.
cout << endl << "Enter elements of 2nd matrix: " << endl;
for(i = 0; i < r; ++i)
   for(j = 0; j < c; ++j)
   {
       cout << "Enter element b" << i + 1 << j + 1 << " : ";
       cin >> b[i][j];
   }

// Adding Two matrices
for(i = 0; i < r; ++i)
    for(j = 0; j < c; ++j)
        sum[i][j] = a[i][j] + b[i][j];

// Displaying the resultant sum matrix.
cout << endl << "Sum of two matrix is: " << endl;
for(i = 0; i < r; ++i)
    for(j = 0; j < c; ++j)
    {
        cout << sum[i][j] << "  ";
        if(j == c - 1)
            cout << endl;
    }

return 0;

}

pbisaria007 and others added 30 commits November 17, 2019 12:43
Added my data to the repository
Added a new file KshitijJain.py
Added a new file AnuragJha.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.