179k views
3 votes
You are planning a program to find the maximum heart rate recommended for patrons of a gym where you have a part-time job. One formula for calculating the maximum heart rate is the difference between 220 and the patron’s age. Some of the steps in your plan are below.

Put them in order of which occurs first. Some steps are not listed.

User Fose
by
4.0k points

2 Answers

5 votes

Answer:

got 100 on the quiz

Step-by-step explanation:

You are planning a program to find the maximum heart rate recommended for patrons-example-1
User Pit
by
4.7k points
4 votes

Answer:

Age = int(input(Enter your age? "))

print(f"Your maximum heart rate is {220 - age}.")

Step-by-step explanation:

The programs will be as follows

Age = int(input(Enter your age? "))

print(f"Your maximum heart rate is {220 - age}.")

User Matthew Moss
by
4.3k points