Body Mass Index
Write a Java program using NetBeans. Include the source code as text and output screenshots.
Body Mass Index
Write a program that calculates and displays a person's body mass index (BMI). The BMI is often used to determine whether a person is overweight or underweight for their height. A person's BMI is calculated with the following formula:
BMI = Weight * 703 / Height^2
where weight is measured in pounds and height is measured in inches. The program should display a message indicating whether the person has optimal weight, is underweight, or is overweight. A person's weight is considered optimal if their BMI is between 18.5 and 25. If the BMI is less than 18.5, the person is considered underweight. If the BMI value is greater than 25, the person is considered overweight.