已知二维数组(变长) 如下: int[][] A=new int[][]{ new int[]{1,2,4},new int[]{7},new int[]{23,45, 78,90,89},new int[]{45,78} }; 分别使用for、foreach语句找出最大值并输出。