Write a program to input the length, breadth and height of a cuboid and print the volume .
Answers
Answered by
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
Physics,
17 days ago
Math,
17 days ago
Math,
17 days ago
History,
1 month ago
Hindi,
1 month ago
Computer Science,
9 months ago
Computer Science,
9 months ago
Physics,
9 months ago