Exercise 3.6.8: Running Speed5 points
Write a program that asks the user how many miles they ran and how many minutes it took to run that far. Ask for the input in this order!

Convert their speed to miles per hour and print out their speed.

Be sure to include comments that describe the program’s behavior which is how the program functions and how the user interacts with it.

Sample output:

How many miles did you run? 3
How many minutes did it take you? 60
Speed in mph: 3.0
code in python

Respuesta :

This is what I got for the code. And I tested it out on the right and it works.

Ver imagen aaronjduffin

The program illustrates the use of arithmetic operations.

The program in Python where comments are used for explanation is as follows:

#This gets input for the number of miles

miles = int(input("How many miles did you run? "))

#This gets input for the number of minutes

minutes = int(input("How many minutes did it take you? "))

#This calculates the speed in mph

Speed = miles/(minutes/60.0)

#This prints the calculated speed

print("Speed in mph:",Speed)

At the end of the program, the program converts the minutes to hours, calculates and prints the speed.

See attachment for complete program and sample run

Read more about Python programs at:

https://brainly.com/question/22841107

Ver imagen MrRoyal