Question: public class Matrix{ private int[][] matrixData; // integer array to store integer data private int rowsNum; // number of rows private int colsNum; // number
public class Matrix{ private int[][] matrixData; // integer array to store integer data private int rowsNum; // number of rows private int colsNum; // number of columns public Matrix( int row, int col ) //constructor1 { if(row<=0){ row=3; } if(col<=0){ col=3; } private int i,j; for(i=0,i
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
