Write a class Box which contains the data members width, height and depth all of type double
Write a class Box which contains the data members width, height and depth all of type double. Write the implementation for the below 3 overloaded constructors in the class Box : Box() – default constructor which initializes all the members with -1 Box(length) – parameterized constructor with one argument and initialize all the members with…