Answer to Question #37720 in Java | JSP | JSF for Colleen

Question #37720
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).
1
Expert's answer
2013-12-11T07:01:21-0500
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS