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 Main {
- public static void main(String[] args) {
- // массивы
- // 1) одномерные массивы
- // объявление переменной типа массив
- int[] array; // массив значений типа int
- array = null;
- array = new int[10]; // new - ключевое слово (для создания массива)
- // 10 - размерность массива
- int[] array2 = new int[2];
- // доступ к элементу [] (в скобках указывается индекс элемента массива)
- System.out.println("array2[0]=" + array2[0]);
- int i = 0;
- System.out.println("array2[0]=" + array2[i]);
- // вывод всех элементов массив array2 на экран
- for (int j = 0; j < array2.length; j++) {
- System.out.println("array2[j]=" + array2[j]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement