Відповідь:
Python code:
import math
a = float(input("a: "))
b = float(input("b: "))
ar = (a + b)/ 2
geo = math.sqrt(a*b)
print("Арифметическое = ", ar, " Геометрическое = ", geo)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
Python code:
import math
a = float(input("a: "))
b = float(input("b: "))
ar = (a + b)/ 2
geo = math.sqrt(a*b)
print("Арифметическое = ", ar, " Геометрическое = ", geo)