Райан Гослинг
Ученик
(44),
на голосовании
2 дня назад
почему выдает ошибку?import math x=float(input("Введите x ")) s=float(input("Введите s ")) if x-s<5: print(s**(1/3)*math.sqrt(x**2 * s**3)) elif x-s>=5: print((1)/(x**3 -math.sin(5+s*x)))
import math x = float(input("Введите x ")) s = float(input("Введите s ")) if x - s < 5: print(s**(1/3) * math.sqrt(x**2 * s**3)) elif x - s >= 5: print(1 / (x**3 - math.sin(5 + s * x)))
x=float(input("Введите x "))
s=float(input("Введите s "))
if x-s<5:
print(s**(1/3)*math.sqrt(x**2 * s**3))
elif x-s>=5:
print((1)/(x**3 -math.sin(5+s*x)))