#include #include #include "CubeClass.h" using namespace std; int main() { cout << "Hello. I can calculate the volume of three cubes, mmmkay?\n"; Cube onesolid; Cube reallyOneSolid(0,0,0); // be sure to follow the assignment instructions! Cube rubik(100,100,100); Cube ice(100,100,100); int count = 0; while (rubik <= ice && !(ice <= onesolid)) { // per the assignment instructions... } cout << "\nMmmmmkay?\n\n"; system("PAUSE"); return 0; }