import java.util.*;

/**
 * CircleTester will be the main driver for the
 * different exercises in the lab.
 *
 * @author		Jake Carey
 * @version		1.0, September 17, 2008
 */

public class CircleTester
{
	public static void main (String[] args)
	{
		Circle myFirstCircle, mySecondCircle;
		
		myFirstCircle 	= new Circle(4.00);
		mySecondCircle = new Circle(5.00);
		
		//prints out the circles as strings
		System.out.println(myFirstCircle.toString());
		System.out.println(mySecondCircle.toString());
		
		//determines whether both circles are equal in radius
		if (myFirstCircle.equals(mySecondCircle))
			System.out.println("First circle = Second circle");
		else
			System.out.println("First circle != Second circle");
		
		//determines whether the second circle is greater than
		// the first circle
		if (myFirstCircle.greaterThan(mySecondCircle))
			System.out.println("First circle < Second circle");
		else
			System.out.println("First circle > Second circle");
	}//end main
}//end CircleTester