Write a method with a void return value that inverts all the elements of a two-dimensional array of booleans (true becomes false and false becomes true).
void invert(boolean arr[][]) {
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
arr[i][j] = !arr[i][j];
}
}
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
JavaJSPJSF