CODE
def getFinalVelocity(u, a, t):
return u + a * t
def getTime(u, v, a):
return round((v - u) / a)
v = getFinalVelocity(15, 2.5, 18)
t = getTime(0, 100, 2.5)
print("Final velocity = %f m/s" %v)
print("Time taken = %d seconds" %t)
Get Answers For Free
Most questions answered within 1 hours.