1
0
Fork 0
python-isn/math.py
2020-01-21 11:29:18 +01:00

12 lines
No EOL
187 B
Python
Executable file

import math
t = float(input("t ="))
if t <= 1/2 :
gt = 20*t
elif t >= 2/3 :
gt = ((7/6)*10)/2+10*t
elif t > 1 :
gt = 0
else:
gt = ((t+1/2)*10)/2+10*t
print(gt)