C++ Only
Read an integer as the number of Cone objects. Assign myCones with an array of that many Cone objects. For each object, call object's Read() followed by the object's Print().
Ex: If the input is 2 21 13 46 12, then the output is:
Cone's radius: 21
Cone's height: 13
Cone's radius: 46
Cone's height: 12
Cone with radius 46 and height 12 is deallocated.
Cone with radius 21 and height 13 is deallocated.