write an algorithm to find the volume of cuboid plz photo
Answers
Answered by
2
w, l, h = list(map(int, input("enter w, l & h: ").split()))
print(f"cuboid volume: {w * l * h}")
Similar questions