![]() |
Data Abstraction and Problem Solving with C++Walls and Mirrorsby Frank M. Carrano |
![]() |
displayStatistics405.cppGo to the documentation of this file.00001 00016 void Sphere::displayStatistics() const 00017 { cout << "\nRadius = " << getRadius() 00018 << "\nDiameter = " << getDiameter() 00019 << "\nCircumference = " << getCircumference() 00020 << "\nArea = " << getArea() 00021 << "\nVolume = " << getVolume() << endl; 00022 } // end displayStatistics |