// *************************************************************
// Name:         Mohamed Aboutabl
// Date:         September 7, 2004
// Assignment:   Lab05.java
//
// *************************************************************
// References & Acknowledgements: I received no outside help
//
// *************************************************************
// Lab05 class
// Demonstrates declarations, assignment, and printing
// *************************************************************

public class Lab05
{
   /**----------------------------------------------------------
	// Declarations, Assignments, and printing of integer variables
	// --------------------------------------------------------*/
	public static void main( String[] args)
	{
	   int var1 , var2, var3; // 3 variables
		final int BREAK_TIME = 15 ; // jmu break between classes in mu
		
		// Section 1: Assignments
		var1 = 23 ;
		var2 = 0 ;
		var3 = 5;
		
		System.out.println("The first  variable is " + var1 );
		System.out.println("The second variable is " + var2 );
		System.out.println("The third  variable is " + var3 );
		
		// Section 2: Constants
		System.out.println("There are " + BREAK_TIME + " minutes of break between classes at JMU" );
		
		// Section 3: Assignment Continued
		var1 = BREAK_TIME ;
		var2 = var3 ;
		System.out.println("The first  variable is " + var1 );
		System.out.println("The second variable is " + var2 );
		System.out.println("The third  variable is " + var3 );
		
		// Section 4: Constant maniplulation
		// BREAK_TIME = 25 ;			
	}
}