Ответы
Ответ дал:
0
#A
x = float(input())
print(-1/x**2)
#Б
a, b, c = float(input()), float(input()), float(input())
print(a/(b*c))
#В
a, b, c = float(input()), float(input()), float(input())
print(a/b * c)
#Г
a, b = float(input()), float(input())
print((a+b)/2)
#Д
a, b = float(input()), float(input())
print(5.45 * ((a+2*b)/(2-a)))
Похожие вопросы
1 год назад
2 года назад
8 лет назад
8 лет назад
9 лет назад