Here you can find the source of printArray(int[] array)
public static void printArray(int[] array)
//package com.java2s; //License from project: Open Source License import java.util.Arrays; public class Main { public static void printArray(int[] array) { System.out.println(Arrays.toString(array)); }// ww w . j a va 2 s.co m }