/*
header - this code written on 9/7/08
*/
public class ifDemo
{
public static void main( String [ ] args )
   {
   int x = 1;
   String displayText = "  ";

   if ( x == 0 )   // comment - this section runs if x is 0
      {  
      System.out.println("first brackets *****");
      displayText = "X is ZERO";
      }  
   else            // comment - this section runs if x is NOT 0
      {
      System.out.println("second brackets !!!!!");
      displayText = "X is NOT ZERO";
      } 
   
	System.out.println( );
	System.out.println( displayText );
   System.out.println( x );
	}
} 
