Ответ:
1)
a = float(input())
b = float(input())
c = float(input())
z = (b + (b*b + 4*a*c)**(1/2))/2*a - a**3*c + b**(-2)
print(z)
2)
d = float(input())
z = (a/c)*(b/d) - (a*b-c)/c*d
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
1)
a = float(input())
b = float(input())
c = float(input())
z = (b + (b*b + 4*a*c)**(1/2))/2*a - a**3*c + b**(-2)
print(z)
2)
a = float(input())
b = float(input())
c = float(input())
d = float(input())
z = (a/c)*(b/d) - (a*b-c)/c*d
print(z)
Объяснение: