Is there any way to populate the rows of an already declared multidimensional array without a for loop? can I now add in a row of information at one time?
ex: I declare an array 3 x 3
int[][] newArray = new int[3][3];
I've tried to now do something like this
newArray[1] = {143, 124, 453};
but I get tons of errors, and changing the brackets to other things doesn't help.