c++求圆柱体表面积
答案:2 悬赏:80 手机版
解决时间 2021-02-27 03:10
- 提问者网友:戎马万世
- 2021-02-26 13:16
定义基类location,包含私有成员:x,y,公有成员函数:构造和析构函数,求面积函数area()和位置信息函数get_x()和get_y()
最佳答案
- 五星知识达人网友:春色三分
- 2021-02-26 14:36
任务占坑
全部回答
- 1楼网友:何以畏孤独
- 2021-02-26 14:48
#include <iostream.h>
#include <conio.h>
class location
{
private:
float x;
float y;
float a;
public:
location() {x=0;y=0;}
location(float a,float b) {x=a;y=b;}
~location() {}
float get_x() {return x;}
float get_y() {return y;}
void set_x() {cout<<"半径:";cin>>x;}
void set_y() {cout<<"高:";cin>>y;}
float area() {return a=3.14*x*x*y;}
void disp() {cout<<"长:"<<get_x()<<endl<<"宽:"<<get_y()<<endl<<"面积"<<area()<<endl;}
};
int main()
{
location c1(4,3),c2;
c1.disp();
c2.set_x();
c2.set_y();
c2.disp();
getch();
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯