设计程序 用户输入运动物体初速度v0,加速度a和时间t,输入当前物体运动速度vt
v0 = float(input("v0"))a = float(input("a"))t = float(input("t"))print("vt=", v0 + a * t)