Write a program in C++ using classes and function overloading, to calculate volume of Cube, Cuboid and a
Cylinder, the program should allow user to enter values. Start by creating a class called Shape with float
member variables l, w and h and integer member variables a and r.
Note:
• Volume of...