public Student(string a, double b, bool c, int d)
public double CalcWeightedGPA (string Weight)
public static void Main()
Student thisstudent = new Student("hanging out", 3, true, 4);
Console.WriteLine("This student's GPA is " + thisstudent.CalcWeightedGPA("low") + ".");