Question: Please help me write a JAVA program that contains the following main method: The formulas for calculating BMI are BMI = 703 - weightInPounds heightInInches?
Please help me write a JAVA program that contains the following main method:


The formulas for calculating BMI are BMI = 703 - weightInPounds heightInInches? or BMI = weight In Kilograms heightInMeters Create a BMI calculator that reads the user's weight and height (providing an option for the user to select which formula to use), and then calculates and displays the user's body mass index. Also, display the BMI categories and their values from the National Heart Lung and Blood Institute: http://www.nhlbi.nih.gov/health/educational/lose_wt/BMI/bmicalc.htme so the user can evaluate his/her BMI. public static void main(String[] args) { BMICalculator app = new BMI Calculator(); app.readUserData(); app.calculateBmi(); app.display Bmi()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
