Answer:
Pseudocode:
INPUT velocity
INPUT time
SET velocity = 0.44704 * velocity
SET acceleration = velocity / time
SET acceleration = round(acceleration, 1)
PRINT acceleration
Code:
velocity = float(input("Enter a velocity in miles per hour: "))
time = float(input("Enter a time in seconds: "))
velocity = 0.44704 * velocity
acceleration = velocity / time
acceleration = round(acceleration, 1)
print("The acceleration is {:.2f}".format(acceleration))
Explanation:
*The code is in Python.
Ask the user to enter the velocity and time
Convert the miles per hour to meters per second
Calculate the acceleration using the formula
Round the acceleration to one decimal using round() method
Print the acceleration with two decimal digits