Ответ:
Объяснение:
Python 3.10
def funcY(x):
if x <= 0:
return -3 * x ** 4 + 2.5 * x
elif x <= 8:
return 5 * x ** 3 + 5
else:
return -5 * x
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
Python 3.10
def funcY(x):
if x <= 0:
return -3 * x ** 4 + 2.5 * x
elif x <= 8:
return 5 * x ** 3 + 5
else:
return -5 * x