码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材-p90_5(4)

时间:2020-02-06 20:11:33      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:图片   ima   mic   std   using   cin   fine   class   namespace   

源程序:

#include <iostream>
#define PI 3.1415926
using namespace std;

class Cylinder
{
private:
double r, h;
public:
Cylinder(double rr, double hh)
{
r = rr;
h = hh;
}
double circle_length()
{
return 2 * PI*r;
}
double circle_area()
{
return PI*r*r;
}
double Cylin_tiji();
};

double Cylinder::Cylin_tiji()
{
return circle_area()*h;
}

int main()
{
double radius, height;
cout << "请输入圆柱的底面半径和高:";
cin >> radius >> height;
Cylinder C(radius, height);
cout << "圆柱体的底面周长为:" << C.circle_length() << endl;
cout << "圆柱体的底面积为:" << C.circle_area() << endl;
cout << "圆柱体的体积为:" << C.Cylin_tiji() << endl;
system("pause");
return 1;
}

运行结果:

技术图片

 

自考新教材-p90_5(4)

标签:图片   ima   mic   std   using   cin   fine   class   namespace   

原文地址:https://www.cnblogs.com/duanqibo/p/12269879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!