Ответ:
import math
x = float(input("Введите x: "))
if (x<0):
y = x*math.log(math.fabs(math.cos(x)))
else:
if (x>= 2.5):
y = x - 2
y = 1 + x*x
print("y=" + str(y))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import math
x = float(input("Введите x: "))
if (x<0):
y = x*math.log(math.fabs(math.cos(x)))
else:
if (x>= 2.5):
y = x - 2
else:
y = 1 + x*x
print("y=" + str(y))