Source of 7.6.java


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