#include <iostream> using namespace std; class Cube { // write your code here...... public: void setLength(int length) { this->length=length; } void setWidth(int width) { this->width=width; } void setHeight(int height) { this->height=height; } int getLength() { return this->length;...