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

Method volume

Examples/NoModules/Chapter 20/Ex20_08/Box.h:22–22  ·  view source on GitHub ↗

Function to calculate the volume of a box

Source from the content-addressed store, hash-verified

20
21 // Function to calculate the volume of a box
22 double volume() const { return m_length * m_width * m_height; }
23
24private:
25 double m_length{ 1.0 };

Callers 1

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected