- Bmi Body Mass Index Is An Inexpensive And Easy Screening Method For Weight Category Underweight Healthy Weight Overw 1 (61.08 KiB) Viewed 24 times
BMI (Body Mass Index) is an inexpensive and easy screening method for weight category-underweight, healthy weight, overw
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
BMI (Body Mass Index) is an inexpensive and easy screening method for weight category-underweight, healthy weight, overw
BMI (Body Mass Index) is an inexpensive and easy screening method for weight category-underweight, healthy weight, overweight, and obesity. It is calculated as dividing your weight in pounds by your height (in inches) squared and then multiplied by 703. In other words BMI = (W/H³)*703. Create a program in Python to accept input from clients of their name, weight (in pounds) and height (in inches). Calculate his/her BMI and then display a message telling them the result. Below is the table of BMI for adults: BMI Below 18.5 Weight Status Underweight Normal 18.5 24.9 25.0-29.9 Overweight Obese 30.0 and Above Your program should display for the client a message telling them in which range they are. Code your program as a loop so that the program will continue to run until there are no more clients. You decide what will end the program. Extra details to follow: • Be sure to add comments to your program to explain your code. • Insert blank lines for readability. . Be sure the program executes in a continual running mode until your condition is met to stop. I should be able to enter information for multiple clients. • You can customize your messages displayed back to the client about his/her BMI status. Be nice. Add to your program the time function so it will pause 5 seconds after executing all lines of code.