Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Help???? image text in transcribed
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

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

Fundamentals Of Database Management Systems

Authors: Mark L. Gillenson

3rd Edition

978-1119907466

More Books

Students also viewed these Databases questions

Question

describe and present a summary of data you have collected.

Answered: 1 week ago

Question

collect, organise and store quantitative data in an effective way;

Answered: 1 week ago