Ответ:
x = float(input("Введіть значення x: "))
y = (7 * x ** 2) / (2 * x ** 2 - 8 * x - 25)
print("Значення виразу y =", y)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
x = float(input("Введіть значення x: "))
y = (7 * x ** 2) / (2 * x ** 2 - 8 * x - 25)
print("Значення виразу y =", y)