Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

The program is to be written in C++ langauge. I need some help, urgently. Create

ID: 3638215 • Letter: T

Question

The program is to be written in C++ langauge. I need some help, urgently.

Create a BMI calculator applications that reads the user's weight in kilograms and height in meters, then calculates and displays the user's body mass index. Also, the application should display the following information from the Department of Health and Human Services, so the user can evaluate his/her BMI:
BMI Values
Underweight: less that 18.5
Normal: between 18.5 and 24.9
Overweight: between 25 and 29.9
Obese: 30 or greater


Formula for calculating BMI are
BMI = weightInKilograms
heightInMeters x heightInMeters

Explanation / Answer

nclude #include using namespace std; int main() { cout