Write a program that calculates and displays a person’s body mass index (BMI). 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 welcome message, and ask for the weight (in pounds) and the height (in inches) from the user. The program should display a message indicating whether the person has optimal weight, is underweight, or is overweight. A sedentary person’s weight is considered to be optimal if his or her BMI is between 18.5 and 25 (including 18.5 and 25). If the BMI is less than 18.5, the person is considered to be underweight. If the BMI value is greater than 25, the person is considered to be overweig
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
Write a
BMI = weight × 703/height2
where weight is measured in pounds and height is measured in inches.
- The program should display a welcome message, and ask for the weight (in pounds) and the height (in inches) from the user.
- The program should display a message indicating whether the person has optimal weight, is underweight, or is overweight.
- A sedentary person’s weight is considered to be optimal if his or her BMI is between 18.5 and 25 (including 18.5 and 25). If the BMI is less than 18.5, the person is considered to be underweight. If the BMI value is greater than 25, the person is considered to be overweight.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images