Advertisement
piffy

geometry.h

Jan 1st, 2020
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #ifndef GEOMETRY
  2. #define GEOMETRY
  3.  
  4. double area_circle(double radius);
  5. double area_rectangle(double base,double height);
  6. double area_triangle(double base,double height);
  7.  
  8. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement