03_zemljevid_ovir

This commit is contained in:
Gašper Dobrovoljc
2023-10-27 12:49:52 +02:00
commit 3a09b99dfa
7 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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)