/* Create a function that creates a box based on dimension n. */ std::vector makeBox(int n) { // n represents the height of the box and length std::vector thebox; for (int i=0;i0) && (i < (n-1))){ thebox[i].replace (1, n-2, n-2, ' '); } } return thebox; }