private double dBEL, dForeign, dMath, dPhys, dChem, dBio;
set { if (value >= 2.00 && value <= 6.00) this.dBEL = value; }
get { return this.dBEL; }
set { this.dForeign = value; }
get { return this.dForeign; }
set { this.dMath = value; }
get { return this.dMath; }
set { this.dPhys = value; }
get { return this.dPhys; }
set { this.dChem = value; }
get { return this.dChem; }
public static void Main()