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
Nepal is such a beautiful country because of geographical diversity how.
Cerrena [4.2K]

Answer:

It is diverse.

Explanation:

Nepal is so diverse because of its Indigenous Nationality's. Nepal is a multi-cultural, multi-racial, multi-linguistic and multi-ethnic country. It has lots of equal opportunities'.  

4 0
3 years ago
Heres some points ya piont goblins​
GaryK [48]
THANKK YOUUUUUUUUUUUUUUU
6 0
2 years ago
Read 2 more answers
It’s normal to feel nervous during an interview.
anyanavicka [17]

Answer:

is this a question lol

6 0
3 years ago
Read 2 more answers
1. A group of 1,000 randomly chosen individuals took a test that measures verbal reasoning and also a test that measures problem
salantis [7]
Ion know boy go check yourself
4 0
3 years ago
Fill in the blank with the comparative form of the underlined modifier
Ainat [17]

Answer:

The following are the answers for each questions:

1. It was worse than the movie we saw last week

2. Felipe showed much concern about the poor quality of the movie.

Belinda showed even more concern than Felipe

3. A lot of movies are filmed in New York

Explanation:

Brainlyest pleas

8 0
2 years ago
Other questions:
  • A soccer team has played 25 games and has won 60% of the games it has played. What is the minimum number of additional games the
    14·1 answer
  • At what age can children ride a bicycle with training wheels?​
    13·2 answers
  • What is the economic capital of India ?​
    5·1 answer
  • What does sugarcandy mountain represent in the story? the farm after the rebellion the concept of heaven a nation where people a
    12·1 answer
  • Which statement is true of both presidential and parliamentary systems of government.
    5·1 answer
  • In a theater, there are 15 chairs in the first row, each row has 3 more chairs than the previous row, and there are 15 rows. how
    5·1 answer
  • The two structures that limit transpiration are known as
    6·1 answer
  • Which piece of evidence best supports a written argument encouraging students to eat less candy? fruits make a tasty and better
    14·1 answer
  • Which best describes the strength of the correlation, and what is true about the causation between the variables? it is a weak n
    7·1 answer
  • Question 1-5
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!