circle_shape.cpp 159 B

123456789
  1. // circle_shape.cpp
  2. namespace ShapeImpl
  3. {
  4. double area(const Circle &circle)
  5. {
  6. double r = circle.radius;
  7. return 3.14 * r * r;
  8. }
  9. } // namespace ShapeImpl