Posts by Elaine • 23 points
2 posts
-
2
votes1
answer1852
viewsQ: Define matrix in python
I need to create a matrix and fill it with random values (randint(0,9)), except in equal rows and columns. For example, in this way: A| B| C| D| E A x| 2| 1| 4| 2 B 1| x| 1| 1| 2 C 5| 1| x| 4| 3 D…
-
-3
votes1
answer403
viewsQ: Create classes and functions in c++
One can give an example of how to create the main, the . h, and the . cpp in c++? and also connect them all. For example, having a function that receives an input value a, having another class that…