Advertisement
piffy

geometry2.h

Jan 3rd, 2020
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #ifndef GEOMETRY
  2. #define GEOMETRY
  3.  
  4. namespace  geometry {
  5.  
  6. double area_circle(double radius);
  7. double area_rectangle(double base,double height);
  8. double area_triangle(double base,double height);
  9. double volume_sphere(double radius);
  10. }
  11.  
  12. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement