#define pi 3.142

typedef double radius_type;
typedef double height_type;
typedef double length_type;

double right_circular_cylinder(radius_type, height_type);
double right_circular_cone(radius_type, height_type);
double sphere(radius_type);
double ellipsoid(length_type, length_type, length_type);

