C++程序设计题,设计类circle,整型私有数据成员x,y,r;为其定义构造函数及析构函数,

定义输出输出函数output()输出x,y,r.
2024-12-02 23:50:52
推荐回答(2个)
回答1:

#include 
using namespace std;

class Circle
{
private:
int x;
int y;
int r;
public:
Circle(int xx,int yy,int rr)
{
this->x=xx;
this->y=yy;
this->r=rr;
cout<<"构造函数"< }
~Circle()
{
cout<<"析构函数"< }
void output()
{
cout<<"x="<x< cout<<"y="<y< cout<<"r="<r< }
};
int main()
{
Circle *c=new Circle(1,1,2);
c->output();
delete c;
return 0;
}

回答2:

这没啥难度的啊。看看书~~~