Ответ:
step = 6; distance = 20; time = 0
while distance >= 0:
distance -= step
step -= 1
time += 1
print(f'Туристy знадобилося {time - 1} годин.')
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
step = 6; distance = 20; time = 0
while distance >= 0:
distance -= step
step -= 1
time += 1
print(f'Туристy знадобилося {time - 1} годин.')