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