1: /** Displays the integers in an array. 2: @param array An array of integers. 3: @param first The index of the first integer displayed. 4: @param last The index of the last integer displayed, 5: 0 <= first <= last < array.length. 6: @author Frank M. Carrano, Timothy M. Henry 7: @version 5.0 8: */ 9: public static void displayArray(int[] array, int first, int last)