// @author Frank M. Carrano, Timothy M. Henry
// @version 5.0
public static void countDown(int integer)
{
   System.out.println(integer);
   if (integer > 1)
      countDown(integer - 1);
} // end countDown

