计算二维数组每列的最大值

public static int[] maxIncol(int[][] arr) {
  int[] res = arr[0];
  int[] temp;

        for (int i=1; i

你可能感兴趣的:(计算二维数组每列的最大值)