The Harris-Benedict equation estimates the number of calories your body needs to maintain your weight if you do no exercise. This is called your basal metabolic rate, or BMR. The formula for the calories needed for a woman to maintain her weight is BMR = 655 + (4.3 x weight in pounds) + (4.7 x height in inches) -(4.7 x age in years) The formula for the calories needed for a man to maintain his weight is BMR = 66 + (6.3 x weight in pounds) + (12.9 x height in inches) -(6.8 x age in years) A typical chocolate bar will contain around 230 calories. Write a program that allows the user to input his or her weight in pounds, height in inches, age in years, and the character M for male and F for female. The program should then output the number of chocolate bars that should be consumed to maintain one's weight for the appropriate sex of the specified weight, height, and age.
Control structures
Control structures are block of statements that analyze the value of variables and determine the flow of execution based on those values. When a program is running, the CPU executes the code line by line. After sometime, the program reaches the point where it has to make a decision on whether it has to go to another part of the code or repeat execution of certain part of the code. These results affect the flow of the program's code and these are called control structures.
Switch Statement
The switch statement is a key feature that is used by the programmers a lot in the world of programming and coding, as well as in information technology in general. The switch statement is a selection control mechanism that allows the variable value to change the order of the individual statements in the software execution via search.
The Harris-Benedict equation estimates the number of calories your body needs to maintain
your weight if you do no exercise. This is called your basal metabolic rate, or BMR.
The formula for the calories needed for a woman to maintain her weight is
BMR = 655 + (4.3 x weight in pounds) + (4.7 x height in inches) -(4.7 x age in years)
The formula for the calories needed for a man to maintain his weight is
BMR = 66 + (6.3 x weight in pounds) + (12.9 x height in inches) -(6.8 x age in years)
A typical chocolate bar will contain around 230 calories. Write a
to input his or her weight in pounds, height in inches, age in years, and the character M for
male and F for female. The program should then output the number of chocolate bars that
should be consumed to maintain one's weight for the appropriate sex of the specified weight,
height, and age.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images