Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.mycompany.app12;
- public class Test3 {
- //
- public static void main(String[] args) {
- // одномерный массив
- int[] array = {1, 2, 3, 4};
- // []
- System.out.println("array[1]=" + array[1]);
- // двуменрный массив
- // array2 - двуметный массив значений типа int
- int[][] array2;
- /*
- 1 2 3 4
- 5 6 7 8
- */
- int[][] array3 = {
- {1, 2, 3, 4},
- {5, 6, 7, 8}
- };
- // вывод элементов массива на экран
- // длина массива (размерность массива)
- System.out.println("array.len=" + array.length);
- //
- // длина двумерного массива
- System.out.println("array3.len=" + array3.length);
- System.out.println("Вывод элементов двумерного массива");
- // вывод элементов двумерного массива в виде таблицы
- for (int i = 0; i < array3.length; i++) {
- System.out.println("i=" + i);
- //System.out.println("");
- int[] arr = array3[i];
- System.out.println("arr.length=" + arr.length);
- // вложенный цикл for - позволит получить все элементы одномерного массива
- for (int j = 0; j < arr.length; j++) {
- System.out.println("array3[i][j]=" + array3[i][j]);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement