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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started