循环标签跳出循环 public class GotoTest { public static void main(String[] args) { int[][] array={ {1,20,3}, {28,90,10}, {60,46,71,100}, {41,420,43} }; outer: for (int rowIdx = 0; rowIdx < array.length; rowIdx++) { for (int columnIdx = 0; columnIdx < array[r…