public class GPACalc3_use
{
	public static void main(String[] args)
	{
		GPACalc3 student1 = new GPACalc3();

		student1.getInput();
		student1.DisplayGPA();		//call display method using new instance student1
	}
}