Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

App Inventor

Authors: David Wolber, Hal Abelson

1st Edition

1449397484, 9781449397487

More Books

Students also viewed these Programming questions

Question

Write a paper about medication error system 2016.

Answered: 1 week ago