Source of 7.5.java


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