Python:
a = float(input("Длина: "))
b = float(input("Ширина: "))
c = float(input("Высота: "))
print("V:", a * b * c)
print("S:", 2 * (a*b + a*c + b*c))
print("L:", 4 * (a + b + c))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Python:
a = float(input("Длина: "))
b = float(input("Ширина: "))
c = float(input("Высота: "))
print("V:", a * b * c)
print("S:", 2 * (a*b + a*c + b*c))
print("L:", 4 * (a + b + c))