write a program that calculates and displays a person’s body mass index (BMI). The BMI is often used to determine whether a person with an inactive lifestyle is overweight or underweight for his or her height. A person’s BMI is calculated with the following formula:
BMI = Weight × 703 / Height2
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. An inactive person’s weight is considered to display a message indicating whether the person has optimal weight, is underweight, or is overweight. An inactive person’s weight is considered optimal if his or her BMI is between 18.5 and 25. If the BMI is less than 18.5, the person is considered 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 value is greater than 25, the person is considered overweight.Code:
import java.util.Scanner;class BMILab5{public static void main(String[] args) {Scanner input = new Scanner(System.in);double weight, height, bmi;System.out.println("Enter Weight Value: ");weight = input.nextDouble();System.out.println("Enter Height: ");height = input.nextDouble();bmi = weight + 703 / Math.pow(height, 2);System.out.println("BMI Is: " + bmi);if(bmi >= 18.5 && bmi <= 25){System.out.println("Weight is Optimal:" + bmi);}else if(bmi < 18.5){System.out.println("Weight is Underweight:" + bmi);}else if (bmi > 25){System.out.println("Weight is overweight: " + bmi);}}}
No comments:
Post a Comment