
Write a menu driven C++ program that should perform following operation on matrices using 2D arrays. (Use OOP Please to write minimum code)
The program will first take inputs for both matrices from the user then perform following operations :
Subtract() This method will subtract two matrices.
Multiply() This method will multiply two matrices but first check number of rows and columns of corresponding matrices and display "Not possible" in case of inequality in rows and columns.
AddScalar() This method will add scalar to a matrix by asking user in which matrix to add.
CheckTranspose() This method will ask from user which matrix you want to take transpose and then display its transpose.
CheckSymmetric() This method will check symmetric matrix
CheckIdentity() This method will check if the matrix is identity
CheckUpperTriangular() This method will check upper triangular matrix
Dont use pointers please use counters only..
Thank you very much.
use oop please

Step by stepSolved in 2 steps

- Qn 1: Write a C++ program to multiply 2 matrices using multi-dimensional arrays. Program should ask the user to input the values of both matrices(arrays). Example: Input Input first matrix 2 4 1 2 3 9 Input second matrix 1 2 3 3 6 1 2 9 7 Output Product of the 2 matrices is 16 37 17 29 103 72arrow_forwardPhp)). Given an array of integers, write a PHP function to find the maximum element in the array. PHP Function Signature: phpCopy code function findMaxElement($arr) { // Your code here } Example: Input: [10, 4, 56, 32, 7] Output: 56 You can now implement the findMaxElement function to solve this problem. Let meanswer. r.arrow_forward(_9.). Given an array of integers, write a PHP function to find the maximum element in the array. PHP Function Signature: phpCopy code function findMaxElement($arr) { // Your code here } Example: Input: [10, 4, 56, 32, 7] Output: 56 You can now implement the findMaxElement function to solve this problem. Expect.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





