Computer Science, asked by tanushree4366, 1 month ago

Write a program to input the length, breadth and height of a cuboid and print the volume . ​

Answers

Answered by samuraiatharv
1

Since language is not specified, I will be writing the program in Python.

l = float(input("Enter length of Cuboid: "))

b = float(input("Enter breadth of Cuboid: "))

h = float(input("Enter height of Cuboid: "))

v = l*b*h

print("Volume of the cuboid is ", v)

Similar questions