1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Rzqust [24]
2 years ago
6

The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journa

l 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)).
SAT
1 answer:
Misha Larkins [42]2 years ago
4 0

The program is an illustration of a sequential structure

<h3>What are sequential control structures?</h3>

Sequential control structures are programs that do not require loops and conditional statements

<h3>The actual program</h3>

The program in Python where comments are used to explain each line, is as follows:

#This gets input for age

age = int(input("Age: "))

#This gets input for weight

weight = (input("Weight: "))

#This gets input for the heart rate

heartRate = float(input("Heart Rate: "))

#This gets input for the time

time = int(input("Time: "))

#This calculates the calories burnt

calories = ((age * 0.2757) + (weight * 0.03295) + (heartRate * 1.0781) - 75.4991 ) * time / 8.368

#This prints the calories burnt

print('calories: {:. 2f} calories'. Format(calories))

Read more about similar programs at:

brainly.com/question/24833629

You might be interested in
Good morning friends<br>Have a good day ​
dsp73

Answer:

Good morning? what state r u in its night here 0-0 also tyyyyy

5 0
2 years ago
Read 2 more answers
What is a atom it is for sienince i need to know what is a atom?
yuradex [85]
The smallest unit of matter
4 0
2 years ago
Read 2 more answers
When you take the exit ramp off the expressway and merge onto the next road, you see yellow lines dividing the roadway. What do
alexandr402 [8]
Yellow lines means that roads are merging and there's going to be traffic coming, so it's a warning to be cautious and to join the merged road. It's usually a warning to people that are going at a high speed in their vehicle. So merging majorly helps prevent an accident.
7 0
2 years ago
I need help finding a free benchmark or something very similar. I am trying to help teach a friend because his parents dont make
kozerog [31]

Answer:

search up previous benchmarks online, thats a good way to study

Explanation:

5 0
2 years ago
The alpine house, incorporated, is a large retailer of snow skis. The company assembled the information shown below for the quar
natka813 [3]

From the income statement, it can be deduced that the net profit of Alpine house will be $8000.

<h3>How to calculate new profit</h3>

From the complete information, the net profit will be calculated thus:

Total sales revenue = $150000

Less: Cost of sales = $90000

Gross profit = $60000

Less: Variable selling expense = $10000

Less: Variable administrative expenses = $2000

Less: Total fixed selling expense = $20000

Less: Total fixed adminstrative expense = $20000

Net profit = $8000

In conclusion, the net profit is $8000.

Learn more about net profit on:

brainly.com/question/4177260

7 0
2 years ago
Other questions:
  • Which activity is part of managing water resources? studying water to see whether it is polluted taking a long hot bath to stay
    13·2 answers
  • When the US census is completed, each state is notified how its population affects its number of congressional districts. This p
    8·2 answers
  • If 3x=13 and 2y=7, what is the value of 3(2x)-2(3y)?
    15·2 answers
  • A new technology increases the speed of computers without increasing production costs. What is the MOST LIKELY effect of this te
    7·2 answers
  • In the free-body diagram shown, what is the mass of the car? (gravity = -10 m/s2)
    14·1 answer
  • Which of the following governments/ideologies offers.
    5·1 answer
  • Which statement explains something that the fossil record indicates? Earth is 4. 5 billion years old. Mammals have always existe
    12·1 answer
  • Lesson 16 solve problems with equations answer key
    15·1 answer
  • If this excerpt of a soliloquy from shakespeare's play richard ii were to be transformed into a novel, what characteristics migh
    9·1 answer
  • In a centralized organization, ____________ make all the important decisions.
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!