Help????
vega.cs.kent.edu Programmer-Defined Functions, Call-by-Value, Multiple Files Lab Assignment The assignment contains two parts 1. Basal metabolic rate. Study "Observing Program Stack" described here. As you program your project below, demonstrate to the lab instructor observing variables local to several function frames. Create a project titled Lab5_BMR with a single file titled bmr.cpp The program should calculate the person's Basal Metabolic Rate the number of calories per day a person's body needs to function. Then, on the basis of calculated BMR, your program should output how many doughnuts a person can consume. A medium-size doughnut contains 195 calories. The BMR formula is as follows: o for women 655 + (4.3 x weight in pounds) (4.7 x height in inches)- (4.7 x age in year o for men: 66 + (6.3 x weight in pounds) (12.9 x height in inches)(6.8 x age in year Depending on gender, BMR should be calculated by functions bmrWomen ( and bmrMen() that both accept three parameters: "weight in pounds", "height in inches" and "age in years" and return the BMR. Note that the BMR has a fractional part. The main function should prompt the user for her gender, weight, height and age; compute the BMR and the number of doughnuts that can be consumed per day; and then output both the BMR and the number doughnuts. The number of doughnuts is: BMR divided by the number of calories in a doughnuts. Fractional number of doughnuts can be dropped. The number of calories per doughnut (195) should be put in a named constant. On the basis of the user's gender, main) function should decide whether to invoke bmrWomen(or bmrMen (). The user should input her height in feet and inches. The main) function should compute the total number of inches (one foot has 12 inches) and pass it to the bmr functions. Make sure to use the bmr function prototypes and put the function definitions below the main function definition