Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need help with this Problem in Programming Challenge: BMI Calculator Attached Files: BMI EXAMPLE.PNG (32.063 KB) BMI CALCULATOR FLOWCHART.png (86.543 KB) Write an application

I need help with this Problem in image text in transcribedimage text in transcribed

Programming Challenge: BMI Calculator Attached Files: BMI EXAMPLE.PNG (32.063 KB) BMI CALCULATOR FLOWCHART.png (86.543 KB) Write an application to calculate a person's body mass index (BMI) number, and use the number to determine if the person is underweight, normal weight, overweight, or obese. Your application should ask the person for their weight in pounds and their height in feet and inches. Do not use metric. Use the formula and scale below to build your application. Display the person's BMI and Health status (underweight, normal weight, overweight, or obese). See allached image for test values and flowchart Submit.CPP file only. Formulas: feet-Inches 42 Inches-feet + 12 Note: You will need to convert the feet to inches and add these inches to the remaining inches given by the user. For example, if the user is 5 ft 4 inches, then they are 64 inches tall in total, total_inches = {leet * 12) + remaining inches EMI - 703.0 + (weight /(total_inches * total_inches) ) HINT: You may use doubles for all the variables; otherwise, you may end up with a BMI of O if you use all integers. Health Status BODY MASS INDEX Obese > 30 Overweight >= 25 Normal >= 18.5 Underweight

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Mining Concepts And Techniques

Authors: Jiawei Han, Micheline Kamber, Jian Pei

3rd Edition

0123814790, 9780123814791

More Books

Students also viewed these Databases questions

Question

What is the primary key for the SKU table?

Answered: 1 week ago