The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journal article (source): Calories = ( (Age x 0.2757) + (Weight x 0.03295) +...


The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journal article<br>(source):<br>Calories = ( (Age x 0.2757) + (Weight x 0.03295) + (Heart Rate x 1.0781) – 75.4991) x Time /8.368<br>Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output the<br>average calories burned for a person.<br>Output each floating-point value with two digits after the decimal point, which can be achieved by executing<br>cout <« fixed <« setprecision(2); once before all other cout statements.<br>Ex: If the input is:<br>49 155 148 60<br>the output is:<br>Calories: 736.21 calories<br>

Extracted text: The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journal article (source): Calories = ( (Age x 0.2757) + (Weight x 0.03295) + (Heart Rate x 1.0781) – 75.4991) x Time /8.368 Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output the average calories burned for a person. Output each floating-point value with two digits after the decimal point, which can be achieved by executing cout <« fixed=""><« setprecision(2);="" once="" before="" all="" other="" cout="" statements.="" ex:="" if="" the="" input="" is:="" 49="" 155="" 148="" 60="" the="" output="" is:="" calories:="" 736.21="">

Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here