
public class GPACalc4_use
{
	public static void main(String[] args)
	{
		GPACalc4 st1 = new GPACalc4();

		st1.getInput();		//call getInput() method using new object st1
		st1.DisplayGPA();
		st1.call_GradeBook();
	}
}