//************************************************************* // // your name etc. as in lab1 // // box.cpp // compile: g++ -o box box.cpp // // algorithm steps as in above example // //************************************************************* #include using namespace std; int main(){ // variable declarations double length; double width; double height; double volume; // executable statements // your code goes here return 0; // end program }