1.22 LAB: Expression for calories burned during workout The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journal article...



1.22 LAB: Expression for calories burned during workout






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 as follows:
print('Calories: {:.2f} calories'.format(calories))


Ex: If the input is:


49 155 148 60

then the output is:


Calories: 736.21 calories



'''''Calories=((Age x 0.2757) + (Weight x 0.03295) + (Heart Rate x 1.0781) — 75.4991)x Time / 8.368'''''


age_years=float(input())
weight_lbs=float(input())
heart_rate=float(input())
time_min=float(input())


calories = (( 49 * 0.2757) - (155 * 0.03295) + (148 * 1.0781) - 75.4991) * (60 / 8.368)
print('Calories: {:.2f} calories'.format(calories))




Calories: 662.97 calories



what am i doing wrong?



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here