Программы написаны на Python!
Объяснение:
2)
a = int(input("Введите a:"))
b = int(input("Введите b:"))
c = int(input("Введите c:"))
x = int(input("Введите x:"))
y = ((a * (x ** 2)) + b * x) / (a + (b * c))
sqrt = y ** (0.5)
print(sqrt)
3)
a = int(input('Введите a:'))
b = int(input('Введите b:'))
c = int(input('Введите c:'))
x = int(input('Введите x:'))
if x > 0:
y = (a * (x ** 2)) + (b * x) + c
print(y)
else:
y = x ** 3
Программы написаны на Python!
Объяснение:
2)
a = int(input("Введите a:"))
b = int(input("Введите b:"))
c = int(input("Введите c:"))
x = int(input("Введите x:"))
y = ((a * (x ** 2)) + b * x) / (a + (b * c))
sqrt = y ** (0.5)
print(sqrt)
3)
a = int(input('Введите a:'))
b = int(input('Введите b:'))
c = int(input('Введите c:'))
x = int(input('Введите x:'))
if x > 0:
y = (a * (x ** 2)) + (b * x) + c
print(y)
else:
y = x ** 3
print(y)