Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The following equations estimate the calories burned when exercising ( source ) : Men: Calories = ( ( Age x 0 . 2 0 1

The following equations estimate the calories burned when exercising (source):
Men: Calories =((Age x 0.2017)+(Weight x 0.09036)+(Heart Rate x 0.6309)55.0969) x Time /4.184
Women: Calories =((Age x 0.074)(Weight x 0.05741)+(Heart Rate x 0.4472)20.4022) 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 men and women.
Use variables to get the inputs. For example, getting age might look like the following:
age_years = int(input())
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))

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

Database Basics Computer EngineeringInformation Warehouse Basics From Science

Authors: Odiljon Jakbarov ,Anvarkhan Majidov

1st Edition

620675183X, 978-6206751830

More Books

Students also viewed these Databases questions

Question

What has been your desire for leadership in CVS Health?

Answered: 1 week ago