Write the definition of a class CONTAINER in C++ with the following description:
Private Members
– Radius, Height // float
– Type //int (1 for Cone, 2 for Cylinder)
– Volume // float
– CalVolume() // Member function to calculate
// volume as per the Type

Public Members
– GetValues()
// A function to allow user to enter value
// of Radius, Height and Type. Also, call
// function CalVolume () from it
– ShowAll ()
// A function to display Radius, Height,
// Type and Volume of Container