Source of 7.16.java


  1: public static void displayArray(int array[], int first, int last) 
  2: {
  3:    System.out.print(array[first] + " ");
  4:    if (first < last)
  5:       displayArray(array, first + 1, last);
  6: } // end displayArray
  7: // Version 4.0