Programming Project 3 Bmi Write Complete Program Calculates Users Body Mass Index Bmi Cate Q43890616

Programming Project #3 (BMI) Write a complete program that calculates the users body mass index (BMI) and categorizes its as underweight, normal, overweight, or obese, based on the following table from the United States Center for Disease Control: BMI Weight Status Below 18.5 Underweight 18.5 – 24.9 Normal 25.0 – 29.9 Overweight 30.0 and above Obese To calculate BMI based on weight in pounds (wt_lb) and height in inches (ht_ht) use this formula (rounded to tenths): (703 * wt_lb) divided by (ht_in)2 Alligns with zyBooks chapter 3. Show transcribed image text Programming Project #3 (BMI) Write a complete program that calculates the users body mass index (BMI) and categorizes its as underweight, normal, overweight, or obese, based on the following table from the United States Center for Disease Control: BMI Weight Status Below 18.5 Underweight 18.5 – 24.9 Normal 25.0 – 29.9 Overweight 30.0 and above Obese To calculate BMI based on weight in pounds (wt_lb) and height in inches (ht_ht) use this formula (rounded to tenths): (703 * wt_lb) divided by (ht_in)2 Alligns with zyBooks chapter 3.
Expert Answer
Answer to Programming Project #3 (BMI) Write a complete program that calculates the users body mass index (BMI) and categorizes it…
OR