Ответ:
import math
x = int(input("Введите число: "))
if x < 0:
print(x * math.log1p(math.fabs(math.cos(x))))
if 0 <= x < 2.5:
print(1 + x**2)
if x >= 2.5:
print(x - 2)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import math
x = int(input("Введите число: "))
if x < 0:
print(x * math.log1p(math.fabs(math.cos(x))))
if 0 <= x < 2.5:
print(1 + x**2)
if x >= 2.5:
print(x - 2)