可以通过遍历二维数组的每个元素,找出其中的最大值。以下是一个示例代码:
public class Main {
public static void main(String[] args) {
int[][] arr = {
{1, 2, 3},
{4, 5, 6},
{7, 8, 9}
};
int max = arr[0][0];
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
if (arr[i][j] > max) {
max = arr[i][j];
}
}
}
System.out.println("二维数组的最大值为:" + max);
}
}
在上面的代码中,我们首先初始化一个二维数组arr,并将第一个元素作为最大值的初始值。然后通过嵌套的for循环遍历所有元素,如果当前元素的值大于最大值,则更新最大值。最终输出最大值。