Ответ:
from math import *
x = float(input())
if x < -5 or x > 5:
F = 1/(5-pow(x,2))
elif -5 <= x <= 5:
F = cos (x)
print (F)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
from math import *
x = float(input())
if x < -5 or x > 5:
F = 1/(5-pow(x,2))
elif -5 <= x <= 5:
F = cos (x)
print (F)