Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

2.11 LAB: Expression for calories burned during workout The following equations estimate the calories burned when exercising (source): Women: Calories = ((Age x 0.074) (Weight

image text in transcribedimage text in transcribed

2.11 LAB: Expression for calories burned during workout The following equations estimate the calories burned when exercising (source): Women: Calories = ((Age x 0.074) (Weight x 0.05741) + (Heart Rate x 0.4472) 20.4022) x Time / 4.184 Men: Calories = ((Age x 0.2017) + (Weight x 0.09036) + (Heart Rate x 0.6309) 55.0969) x Time / 4.184 Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output calories burned for women and men. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('Men: {:.2f} calories'.format(calories_man)) Ex: If the input is: 49 155 148 60 Then the output is: Women: 580.94 calories Men: 891.47 calories 294832.1779562 LAB ACTIVITY 2.11.1: LAB: Expression for calories burned during workout 0 / 10 main.py Load default template... main.py Load default template... "" Women: Calories = ((Age x 0.074) - (Weight x 0.05741) + (Heart Rate x 0.4472) - 20.4022) x Time / 4.184 Men: Calories = ((Age x 0.2017) + (Weight x 0.09036) + (Heart Rate x 0.6309) - 55.0969) x Time / 4.184 1 2 3 4 5

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

101 Database Exercises Text Workbook

Authors: McGraw-Hill

2nd Edition

0028007484, 978-0028007489

More Books

Students also viewed these Databases questions