Question: Intro to C++ question: Question 1: Complete the program below writing by writing the prototypes and function definitions for getData() and for calBMR(). Make no

Intro to C++ question:

Question 1:

Complete the program below writing by writing the prototypes and function definitions forgetData()and forcalBMR(). Make no changes to main()! Function getData() is to prompt the user for and input the persons weight, height (in inches), age, and F for female and M for male. Make sure that the program is not case sensitive and exit the program if there is a data entry error. The function calcBMR() should calculate and return the basil metabolic rate (BMR).

For Women: BMR = 655 + 4.3 * weight + 4.7 * height in inches + 4.7 * age

For Men: BMR = 66 + 6.3 * weight + 12.9 * height in inches + 6.8 * age

#include

using namespace std;

// Write the prototypes for getData() and calcBMR()

_____________________________________________

_____________________________________________

int main() { // Local Declarations double weight, height, age; char sex; double valBMR; //Call function to input person's information getData(weight, height, age, sex); //Call function to calculate BMR valBMR = calcBMR(weight, height, age, sex); // Output cout return 0; }// main //Define functions getData() and calc()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!