Question: Please write the code for a Body Mass Indicator program. This C++ program should: State what the program does. Ask the user if they wish
Please write the code for a Body Mass Indicator program. This C++ program should: State what the program does. Ask the user if they wish a BMI calculation to be performed. If the user enters a 'y' or a Y' calculate the body mass index based using the following formula: BMI = weight in kilograms (height in inches * height in inches) Have the user enter their weight in pounds then multiply it by 703 to convert it to kilograms. Have the user enter their height in inches. Evaluate the BMI by the following criteria: If the BMI => 30 then the person is considered "OBESE." If the BMI is between 25.0 and 29.9 the person is considered "OVERWEIGHT." If the BMI is between 18.5 and 24.9 the person is considered "NORMAL". If the BMI is
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
