[solved]-Bmi Weightinpounds 703 Heightininches Heightininches Bmi Weightinkilograms Heightinmeters Q38993233
BMI = weightInPounds * 703 / heightInInches * heightInInches
BMI = weightInKilograms / heightInMeters * heightInMeters
Create a BMI calculator using Java that allows users to entertheir weight and height and whether they are entering these valuesin English or metric units, then calculates anddisplays the user’s body mass index. The app should also displaythe following information from the Department of Health and HumanServices/National Institutes of Health so that users can evaluatetheir BMIs: Must implement using JavaFX.
BMI VALUES:
Underweight: Less than 18.5
Normal: Between 18.5 and 24.9
Overweight: Between 25 and 29.9
Obese: 30 or Greater.
Expert Answer
Answer to BMI = weightInPounds * 703 / heightInInches * heightInInches BMI = weightInKilograms / heightInMeters * heightInMeters C… . . .
OR