计算圆锥体积的c程序
#include <iostream.h>#include <math.h>#define pI 3.14159class circle{ double r,h; public: v
计算圆锥体积的c程序