Write a java program that asks a person for his height (in meters) and weight (in kilograms) and
outputs one of the messages: underweight, normal, or obese, using the BMI formula and BMI
classification. Body Mass Index (BMI) is an index used to measure the body fat using the height
and weight of a person.
BMI Formula:
BMI = (Weight in Kilograms / (Height in Meters x Height in Meters))
BMI Classification:
Underweight: BMI <= 18.4
Normal: 18.5 < =BMI < =24.99
Overweight: 25 < =BMI
how can i do that in netbeans ??