I'm having trouble the function declaration. Would I keep void or just use double?
/*
Program: repair2b: this program prompts for the dimensions of a box (width,len,ht)
then displays the volume and surface area
Example:
If width is 5, len is 6, and ht is 10,
volume is 300.000, surface area is 280.000
If width is 4.8, len is 5.5 and ht is 6.5
volume is 171.600, surface area is 186.700
Add the missing first line of the function and add the function declaration
DO NOT make any other changes
DO NOT us unnecessary refernce parameters
*/
#include <iostream>
#include <iomanip>
using namespace std;