Загрузка данных


package javaapplication2;

public class JavaApplication2 {
    
  public static void main(String[] args) {
        // launch(args); // Эта строка может вызвать ошибку, если нет соответствующего метода

        int[] array = {51, 136, 378};
        for (int i : array) {
            System.out.println(i);
        }

        int[][] nums = {
            {1, 2, 3},
            {4, 5, 6},
            {7, 8, 9}
        };

        for (int[] num : nums) {
            for (int j = 0; j < num.length; j++) {
                System.out.print(num[j] + " "); 
            }
            System.out.println(); 
        }
    }
}