Advertisement
sergAccount

Untitled

Aug 9th, 2020
1,512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.64 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.app11;
  7.  
  8. public class ArrayUtil {    
  9.     // статический метод printArray - выводит все элементы массива на экрна
  10.     // используя разделитель - параметр метода
  11.     //
  12.     public static void printArray(int[] array, String delim){
  13.         for(int a: array){
  14.             System.out.print(a);
  15.             System.out.print(delim);
  16.         }
  17.     }
  18.    
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement