LearningProcessing icon indicating copy to clipboard operation
LearningProcessing copied to clipboard

error on Page 258

Open mattebass opened this issue 5 years ago • 0 comments

Hi, I'm not sure but seems there's an error at page 250: the row and columns are flipped. Because the first index of a two-dimensional array access the array of array, this index is accessing the rows, and the second index is accessing column number. So the statement at the end of the page should be: int[][] myArray = new int[rows][columns], and even the cycle is flipped, so should be for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { myArray[i][j] = 0; } } am I missing something or It's as like as I'm arguing? Thanks

mattebass avatar Sep 30 '20 16:09 mattebass