Ответ:
#python
x = float(input("x = "))
y = 4 * pow(x,3) - 7 * pow(x,2) + 1
print("y = ",y)
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#python
x = float(input("x = "))
y = 4 * pow(x,3) - 7 * pow(x,2) + 1
print("y = ",y)
Объяснение: