Advertisement
sergAccount

Untitled

Dec 6th, 2020
790
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.25 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.ja8;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Main {
  13.    
  14.     public static void main(String[] args) {
  15.         // массивы
  16.         // 1) одномерные массивы
  17.         // объявление переменной типа массив
  18.         int[] array; // массив значений типа int
  19.         array = null;
  20.         array = new int[10]; // new - ключевое слово (для создания массива)
  21.         // 10 - размерность массива
  22.         int[] array2 = new int[2];
  23.         // доступ к элементу [] (в скобках указывается индекс элемента массива)
  24.         System.out.println("array2[0]=" + array2[0]);
  25.         int i = 0;
  26.         System.out.println("array2[0]=" + array2[i]);  
  27.         // вывод всех элементов массив array2 на экран
  28.         for (int j = 0; j < array2.length; j++) {            
  29.             System.out.println("array2[j]=" + array2[j]);
  30.         }        
  31.     }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement