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.ex16;
- /**
- *
- * @author student
- */
- public class Main {
- //
- public static void main(String[] args) {
- //
- double[] arr = {1, 2};
- boolean[] arr1 = {true, false};
- //
- String[] array;
- //
- int[] arr2 = new int[4]; // new
- String[] arr3 = new String[2];
- //
- for (int i = 0; i < arr2.length; i++) {
- System.out.println("arr2[i]=" + arr2[i]);
- }
- //
- for (int i = 0; i < arr3.length; i++) {
- System.out.println("arr3[i]=" + arr3[i]);
- }
- // массив 0 - дины
- int[] arr4 = new int[0]; // new
- // что будет если мы выйдем за пределы массива (почему нужно использовать св-во length?)
- //System.out.println("arr[2]=" + arr[2]); // 2 - недопустимы индекс!
- System.out.println("OK!!!");
- // заполнение массива определенными значениями
- arr[0] = 10; // заполняем массив определенными значениями
- arr[1] = 11;
- for (int i = 0; i < arr.length; i++) {
- System.out.println("arr[i]=" + arr[i]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement