MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / testBox

Function testBox

Exercises/Modules/Chapter 13/Soln13_05/Soln13_05.cpp:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import box;
7
8void testBox(const Box& box)
9{
10 std::cout << "The box's volume is " << box.volume() << ".\n";
11 if (box)
12 std::cout << "This volume is non-zero.";
13 if (!box)
14 std::cout << "This volume is zero.";
15 std::cout << std::endl;
16}
17
18int main()
19{

Callers 1

mainFunction · 0.70

Calls 1

volumeMethod · 0.45

Tested by

no test coverage detected