// This program simulates a count down from 10 to 0.
// Barry Cornelius, 3 June 2000
public class Countdown
{
   public static void main(final String[] pArgs) throws InterruptedException
   {
      System.out.print("10 seconds to Lift Off: ");
      for (int tSecondsToGo = 10; tSecondsToGo>=1; tSecondsToGo--)
      {
         System.out.print(tSecondsToGo + " ");
         Thread.sleep(1000);
      }
      System.out.println("Lift Off");
   }
}
