Create a C++ Console Application that will perform the basic matrix operation (addition, subtraction, and multiplication). The minimum requirement for the program implementation: use array and user-defined function.
Sample Output:
MENU FOR MATRIX OPERATIONS
[1] Addition of a 3 X 3 Matrix
[2] Addition of a 4 X 4 Matrix
[3] Addition of a 5 X 5 Matrix
[4] Subtraction of a 3 X 3 Matrix
[5] Subtraction of a 4 X 4 Matrix
[6] Subtraction of a 5 X 5 Matrix
[7] Multiplication of a 3 X 3 Matrix
[8] Multiplication of a 4 X 4 Matrix
[9] Multiplication of a 5 X 5 Matrix
Enter your choice: 1
Enter value for the First Matrix:
[0, 0] = 1
[0, 1] = 2
[0, 2] = 3
[1, 0] = 4
[1, 1] = 5
[1, 2] = 6
[2, 0] = 7
[2, 1] = 8
[2, 2] = 9
Enter value for the Second Matrix:
[0, 0] = 9
[0, 1] = 8
[0, 2] = 7
[1, 0] = 6
[1, 1] = 5
[1, 2] = 4
[2, 0] = 3
[2, 1] = 2
[2, 2] = 1
The First and the Second Matrix looks like this:
1 2 3 9 8 7
4 5 6 6 5 4
7 8 9 3 2 1
Result of adding the First and the Second Matrix:
10 10 10
10 10 10
10 10 10
Press any key to go back to MAIN MENU or X/x to exit.
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 1 | 2 | 3 | 4 | 5 |