Source of 7.8.java


  1: public static void countDown(int integer)
  2: {
  3:    System.out.println(integer);
  4:    if (integer > 1)
  5:       countDown(integer - 1);
  6: } // end countDown
  7: // Version 4.0