Code for Python

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Code for Python

Post by answerhappygod »

Code for Python
Code For Python 1
Code For Python 1 (46.24 KiB) Viewed 19 times
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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply