Ответ:
Python:
Ex #1:
from math import sqrt
a, b, c = map(float, input("Enter a, b, c values with spaces.\n>> ").split())
x = (sqrt(b**2 - 4*a*c) - b)/(2*a)
print("Result:", x)
Ex #2
a, b = map(float, input("Enter a, b values with spaces.\n>> ").split())
m = sqrt(sqrt(a**2 + b**2))
print("Result:", m)
Ex #3:
x, y, m = map(float, input("Enter x, y, m values with spaces.\n>> ").split())
n = sqrt(sqrt(x + y)/x**2/sqrt(m**3))
print("Result:", n)
Ex #4:
x, y, m, d = map(float, input("Enter x, y, m, d values with spaces.\n>> ").split())
y = sqrt(m) + sqrt(m**5)/sqrt((d*y)/(d*x))
print("Result:", y)
Объяснение:
Сподіваюсь що допомогла.
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Python:
Ex #1:
from math import sqrt
a, b, c = map(float, input("Enter a, b, c values with spaces.\n>> ").split())
x = (sqrt(b**2 - 4*a*c) - b)/(2*a)
print("Result:", x)
Ex #2
from math import sqrt
a, b = map(float, input("Enter a, b values with spaces.\n>> ").split())
m = sqrt(sqrt(a**2 + b**2))
print("Result:", m)
Ex #3:
from math import sqrt
x, y, m = map(float, input("Enter x, y, m values with spaces.\n>> ").split())
n = sqrt(sqrt(x + y)/x**2/sqrt(m**3))
print("Result:", n)
Ex #4:
from math import sqrt
x, y, m, d = map(float, input("Enter x, y, m, d values with spaces.\n>> ").split())
y = sqrt(m) + sqrt(m**5)/sqrt((d*y)/(d*x))
print("Result:", y)
Объяснение:
Сподіваюсь що допомогла.