Body Mass Computation
v The body mass index is used to determine if a person
is overweight:
     BMI = 4.89weight/height2
o where the weight is in pounds, the height is in feet
v Converting it to a procedure is straightforward … so
volunteer to write it, letting your friend build the GUI
Option Explicit
Dim weightLBS As Double
Dim heightIN As Double
Dim bodyMass As Double
Private Sub BMI()
    bodyMass = 4.89 * weightLBS / (heightIN/12)^2
End Sub