/** Driver will "exercise" the methods in GCD_Square
 *
 * @author - Nancy Harris
 * @version V1
 *************************************************************/
public class Driver
{
	public static void main (String args[])
	{
		GCD_Square tester;
		int result;
		
		tester = new GCD_Square();
		
		result = tester.gcd(25, 5);
		System.out.printf("The gcd of 25 and 5 is %d.\n", result);
		
		result = tester.gcd(12, 24);
		System.out.printf("The gcd of 12 and 24 is %d.\n", result);
		
		result = tester.gcd(13, 7);
		System.out.printf("The gcd of 13 and 7 is %d.\n", result);
		
		for (int ii = 1; ii < 10; ii++)
		{
			tester.printStar(ii);
			System.out.println();
		}
		
		
		
	
	}
	

 
}

	
