/********************************************
*	Monday.java 		Eddie Corrales		*
*	2/26/07			Prof.Bam				*
*											*
*********************************************/

public class Monday

{
	 public static void main( String args[] )
	 {

			Circle3 a, b, c, d;
			Alu chip;

			chip = new Alu(x, y, z);			// Create one ALU object.
			chip.setBoth( 5.0, 7.0 );		// Store the operands

			// Test first circle object
			a= new Circle3();


			// TEST SECOND CIRCLE OBJECT

			b=  new Circle3();			// Create a default circle.
			b.setcolor( "RED" );			// Change its color and fill.
			b.setfill("YELLOW" );
			b.setRadius(x);
			y = b.getCircumference();
			z = b.getArea();



			chip.setBoth( x, y );
			chip.getcalcAvg(z);

			System.out.println(chip.getResults() );
	}
}





