习题:计算圆柱表面积和体积

习题:计算圆柱表面积和体积,第1张

习题:计算圆柱表面积体积

个人答案:

#include 
#include 
#define PI 3.1415926
using namespace std;
class Circle
{
public:
  Circle(double,double);//声明构造函数
  double Volume();
  double Area();
  friend void display( Circle&);//声明display函数
private:
  double radius;
  double height;
};
Circle::Circle(double r,double h)
{
  radius = r;
  height = h;
}
double Circle::Volume()
{
  return PI * radius * radius * height;
}
double Circle::Area()
{
  return 2 * PI * radius * radius + 2* PI* radius * height;
}
void display( Circle&c1)
{
  cout << "圆柱的表面积:  " < 

结果:

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5635921.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存