p1/01_kolicina_goriva/naloga.py

14 lines
311 B
Python
Raw Permalink Normal View History

2023-10-27 10:49:52 +00:00
weight = int(input("Vnesi težo tovora: "))
fuel_weight = 0
actual_fuel_weight = 0
while weight > 0:
weight = weight // 3 - 2
fuel_weight += 1
if weight <= 0:
continue
actual_fuel_weight += weight
print("Teža goriva:", fuel_weight)
print("Dejanska teža goriva:", actual_fuel_weight)