1: /** Displays the integers in an array. 2: @param array An array of integers. 3: @param first The index of the first element displayed. 4: @param last The index of the last element displayed, 5: 0 <= first <= last < array.length. */ 6: public static void displayArray(int[] array, int first, int last) 7: // Version 4.0