#include using namespace std; class Cubic{ private: double length,width,height; public: void set_length(void){ cout<<"Please enter the length of the cubic: "; cin>>length; } void set_width(void){ cout<<"Please enter the width of the cubic: "; cin>>width; } void set_height(void){ cout<<"Please enter the height of the cubic: "; cin>>height; } void get_volume(void){ cout<