public Student(string s, double g, bool sp, int n)
double CalcWeightedGPA(string weight)
public static void Main()
Student Sejal = new Student("in class", 3.9, false, 3);
Console.WriteLine("Sejal is " + Sejal.status);
Console.WriteLine(Sejal.CalcWeightedGPA("high"));
Console.WriteLine(Sejal.CalcWeightedGPA("low"));