/*****************************************************************
** DemoVariableScope
**
** Output:
**
**    Haste makes waste
**    Haste makes waste
**    Good advice is worth giving...
**    2 times
**
** (c) Scott MacKenzie, 2000                             
******************************************************************/
public class DemoVariableScope
{
   public static void main(String[] args)
   {
      String advice = "Haste makes waste";
      int i;
      for (i = 0; i < 2; i++)
         System.out.println(advice);
      System.out.println("Good advice is worth giving...");
      System.out.println(i + " times");
   }
}

