Ответ:
Объём куба
def r(a):
return a * a * a
a = float(input())
V = a ** 3
print(V)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объём куба
def r(a):
return a * a * a
a = float(input())
V = a ** 3
print(V)