public string Status; public double GPA; public bool SpringBreak; public int NumClasses;
public Student(string STATUS, double gpa, bool SB, int NUMCLASSES)
public double CalcWeightedGPA(string Weight)
public static void Main()
Student studentA = new Student("in class", 3.4, true, 5);
Console.WriteLine(studentA.CalcWeightedGPA("high"));
Student studentB = new Student("absent", 3.2, false, 4);
Console.WriteLine(studentB.CalcWeightedGPA("low"));