SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
Tony Gaddis
Chapter:
Repetition Structures
Exercise:
Programming Exercises
Question:4 | ISBN:9780132576376 | Edition: 2

Question

Distance Traveled
The distance a vehicle travels can be calculated as follows:
distance = speed x time
For example, if a train travels 40 miles per hour for three hours, the distance traveled is 120 miles. Write a program that asks the user for the speed of a vehicle (in miles per hour) and the number of hours it has traveled. It should then use a loop to display the distance the vehicle has traveled for each hour of that time period. Here is an example of the desired output:

TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Answer

Distance traveled program code:

speed = 0
while speed <= 0:
    #Prompt and read input of speed of the vehicle in mph
    speed = float(input("What is the speed of the vehicle in mph? "))
    
time = 0
while time < 1:
    #Prompt and read the hours traveled time
    time = int(input("How many hours has it traveled? "))
#use a loop to display the distance the vehicle 
#has traveled for each hour of that time period
print("Hour  Distance Traveled")
print("------------------------")
for time in range(1, time + 1):
    #Calculate the distance a vehicle travels
    distance = speed * time
    print(f"{time:<5} {distance:<40.1f}")

OUTPUT:

What is the speed of the vehicle in mph? 40
How many hours has it traveled? 3
Hour  Distance Traveled
------------------------
1         40.0                                    
2         80.0                                    
3         120.0   

 

0 0

Discussions

Post the discussion to improve the above solution.