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.app9;
- /**
- *
- * @author Admin
- */
- public class Test1 {
- public static void main(String[] args) {
- // 2-ой способ создания и инициализации элементов массива
- // 1, 2, 3, 4, 5
- int[] array = {1, 2, 3, 4, 5, 7, 8}; // используем { } значения разделены запятыми
- boolean[] a = {true, false, true};
- // вывод всех элементов массива на экран
- for (int i = 0; i < array.length; i++) {
- //System.out.println(array[i]); // получаем значение элемента по индексу i
- System.out.print(array[i]); // получаем значение элемента по индексу i
- System.out.print(" ");
- }
- /*
- for each loop
- for(declaration : expression){
- //Statements
- }*/
- System.out.println("for each loop:");
- // for each loop
- for(int b: array){
- System.out.println(b);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement