public Student(string s, double g, bool sb, int nClass)
public double CalculateGPA(string input)
public static void Main()
Student S1 = new Student("graduate", 3.82, true, 5);
Console.WriteLine(S1.CalculateGPA("high"));
Console.WriteLine(S1.CalculateGPA("low"));