Source of 9.8.java


  1: // @author Frank M. Carrano, Timothy M. Henry
  2: // @version 5.0
  3: public static void countDown(int integer)
  4: {
  5:    System.out.println(integer);
  6:    if (integer > 1)
  7:       countDown(integer - 1);
  8: } // end countDown