Home > Back-end >  Matrix (higher vocational freshmen midterm data structure design)
Matrix (higher vocational freshmen midterm data structure design)

Time:09-22

1. Allows the user to enter one or two of any line sequence number matrix
2. To matrix addition, subtraction, multiplication and inverse matrix, the matrix transpose operations,
3. Input 1 or 2 matrix selected by the user, by the user to select what kind of operation,
3. Regulation: program is reasonable, in the form of a reasonable input data, store data, and output in the form of reasonable application as a result, use words of C language program design
For bosses to do, let me experience the warmth of the society!

CodePudding user response:

It can be design
First request input rows and columns,
To require the user to input data
Then asks the user to select operation way
The final output

CodePudding user response:

For example:
B a [3] [4], [3] [4]. Two matrices, a new array c [3] [4]
Cycle c [I] [j] a [I] [j] + b=[I] [j]; Other operations so on,
  • Related