| 3 | import box; |
| 4 | |
| 5 | int main() |
| 6 | { |
| 7 | const Box myBox {3.0, 4.0, 5.0}; |
| 8 | std::cout << "myBox dimensions are " << myBox.getLength() |
| 9 | << " by " << myBox.getWidth() |
| 10 | << " by " << myBox.getHeight() << std::endl; |
| 11 | |
| 12 | myBox.printVolume(); |
| 13 | myBox.printVolume(); |
| 14 | myBox.printVolume(); |
| 15 | } |
nothing calls this directly
no test coverage detected