JavaFx with Scene builder: Body Mass Index Calculator App The formulas for calculating the BMI are BMI = (weightInPounds * 703 )/ (heightInInches * heightInInches) Or BMI = (weightInKilograms)/ (heightInMeters * heightInMdters) Create a BMI calculator app that allows users to enter their weight and height and whether they are entering these values in English or metric units, then calculates …

