Вот решение:
Объяснение:
import math
x = int(input("Num: "))
y = None
while y == None:
if x <= 0:
y = -(x + 6) / 2
print(y)
elif x in range(0, 4):
y = math.sqrt(9 - math.pow(x, 2))
elif x in range(4, 6):
y = math.sqrt(9 - (math.pow(x - 6, 2)))
else:
print(0)
break
Вот решение:
Объяснение:
import math
x = int(input("Num: "))
y = None
while y == None:
if x <= 0:
y = -(x + 6) / 2
print(y)
elif x in range(0, 4):
y = math.sqrt(9 - math.pow(x, 2))
print(y)
elif x in range(4, 6):
y = math.sqrt(9 - (math.pow(x - 6, 2)))
print(y)
else:
print(0)
break