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.ex15;
- public class Main2 {
- // определим метод в качестве параметра метода передадим массив целых чисел
- // printArray - имя метода
- // arr - параметр типа массив
- public static void printArray(int[] arr){
- // fori
- for (int i = 0; i < arr.length; i++) {
- System.out.println("arr[" + i + "]=" + arr[i]);
- }
- }
- // резултат работы метода - массив элементов
- public static int[] createEmptyArray(){
- return new int[10];
- }
- //
- public static void main(String[] args) {
- int[] array = {10, 2, 33, 6, 777};
- printArray(array);
- int[] result = createEmptyArray();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement