P1423 小玉在游泳python

P1423 小玉在游泳python_第1张图片

s = float(input())
sum = 0
step = 0
meter = 2.0
while sum < s:
    sum += meter
    meter = 0.98 * meter
    step += 1
print(step)

P1423 小玉在游泳python_第2张图片

你可能感兴趣的:(python,开发语言)