Write a C++ Program that computes the sum of two matrices. Each matrix is of 2 rows and 2 columns and will be created from user input. Output of the program is as follows: Enter [0][0] of Matrix A: 2 Enter [0][1] of matrix A: 3 Enter [1][0] of matrix A: 4 Enter [1][1] of matrix A: 5 Enter [0][0] of Matrix B: 6 Enter [0][1] of matrix B: 7 Enter [1][0] of matrix B: 8 Enter [1][1] of matrix B: 9 A = 2 3 + B = 6 7 = C =8 10 4 5 8 9 12 14
Write a C++
Output of the program is as follows:
Enter [0][0] of Matrix A: 2
Enter [0][1] of matrix A: 3
Enter [1][0] of matrix A: 4
Enter [1][1] of matrix A: 5
Enter [0][0] of Matrix B: 6
Enter [0][1] of matrix B: 7
Enter [1][0] of matrix B: 8
Enter [1][1] of matrix B: 9
A = 2 3 + B = 6 7 = C =8 10
4 5 8 9 12 14
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images