i want to ask about the constructor above. what is the meaning with private Matrix(Matrix A) { this(A.data); } ??? and what is the meaning with Matrix plus(Matrix B)?? is that constructor??? but how is that constructor has return value???
The assignment is to place A and B randomly, and connect it with *. So, whenever the program is run, the position of A and B is change and linked with *.
The position of A and B is random. And A and B is linked by *. What is the logic of this?? do i have to make an array 10 x 10, and access the index randomly to put A??? or what??