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.ja8;
- /**
- *
- * @author Admin
- */
- public class Main3 {
- public static void main(String[] args) {
- int[] arr = {10, 20};
- // цикл for each
- for (int v : arr) {
- System.out.println(v);
- }
- // двумерные массивы
- // 1) создание с использованием new
- int[][] array = new int[2][2];
- // 2) способ заполнения с использованием {}
- int[][] array2 = {
- {1, 2, 3},
- {4, 5, 6}
- };
- // доступ к элементам - используем два индекса
- System.out.println("array2[0][0]=" + array2[0][0]);
- // получить кол-во массивов
- System.out.println("array2.len=" + array2.length);
- //
- System.out.println("array2[0].len=" + array2[0].length);
- System.out.println("array2[1].len=" + array2[1].length);
- //
- array2[0][0] = 777;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement