Ответы
Ответ дал:
0
x = float(input())
while true:
if not x < 30:
print(x)
break
else:
x := x * 3
continue
————————
x = float(input())
x := 5
while True:
if not x < 25:
print(x)
break
else:
x := x + 4
continue
while true:
if not x < 30:
print(x)
break
else:
x := x * 3
continue
————————
x = float(input())
x := 5
while True:
if not x < 25:
print(x)
break
else:
x := x + 4
continue
Вас заинтересует
1 год назад
1 год назад
1 год назад
1 год назад
3 года назад
8 лет назад
8 лет назад