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