p1/01_kolicina_goriva/naloga.py
Gašper Dobrovoljc 3a09b99dfa
03_zemljevid_ovir
2023-10-27 12:49:52 +02:00

14 lines
311 B
Python

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)