Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

error on Page 258 #234

Open
mattebass opened this issue Sep 30, 2020 · 0 comments
Open

error on Page 258 #234

mattebass opened this issue Sep 30, 2020 · 0 comments

Comments

@mattebass
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant