from math import e
x, y, z = int(input("Введите x: ")), int(input("Введите y: ")), int(input("Введите z: "))
c = ((z / x - y) + e ** (y + z)) / abs((z ** 2 - x ** 2) ** 0.5)
print(f"c = {c}")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from math import e
x, y, z = int(input("Введите x: ")), int(input("Введите y: ")), int(input("Введите z: "))
c = ((z / x - y) + e ** (y + z)) / abs((z ** 2 - x ** 2) ** 0.5)
print(f"c = {c}")