Ответ:
Объяснение:
1.
a=float(input())
b=float(input())
print('Среднее ариф.:', (a+b)/2)
print('Сумма:', a+b)
print('Разность:', a-b)
print('Произведение:', a*b)
2.
import math
c= math.sqrt(a*a+b*b)
S= 0.5*a*b
print('Гипотенуза:', c)
print('Площадь:', S)
Можно лучший ответ пожалуйста?
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
1.
a=float(input())
b=float(input())
print('Среднее ариф.:', (a+b)/2)
print('Сумма:', a+b)
print('Разность:', a-b)
print('Произведение:', a*b)
2.
import math
a=float(input())
b=float(input())
c= math.sqrt(a*a+b*b)
S= 0.5*a*b
print('Гипотенуза:', c)
print('Площадь:', S)
Можно лучший ответ пожалуйста?