0
I’m trying to solve a college activity, but I couldn’t transpose the logic into the code. The case is as follows: "The user will enter two integers. These integers will determine the size of the matrix. The user will pass the integers on the same line separated by space. After the user passes the values, the following values will be used as matrix data.
Ex.:
2 2
3 4
5 6
array will be ([3, 4], [5, 6])
i.e., a 2 x 2 matrix.
And what was the logic you thought? Could you describe it?
– Woss
I understood what was asked, but my difficulty is just this, applying a logic to it.
– user120988
Now that I looked at my question, I saw that I had put that I could not apply logic to the code, but in reality my problem is to create a logic to apply in the code...
– user120988