Question: Write an application (BMICalc) that reads the user's weight in poinds and height in inches, then calculates the Body Mass Index.
BMI Formula:
BMI = ( weight in pounds x 703) divided by (height in inches squared)
Your application should output the user's BMI and the following information:
BMI Standards:
Underweight: less than 18.5
Normal: between 18.5 and 24.9
Overweight: between 25 and 29.9
Obese: 30 or greater
I cannot seem to get this to work for some reason could somebody provide me a code to compare and test?