1个回答
展开全部
定义一个点类(Point),其数据成员包含横坐标和纵坐标;再定义一个距离类(Distance),用于描述两点之间的距离,其数据成员为两个点类对象和表示两点之间距离的变量。请完成以下程序,结果如下图所示。
#include
#include
using namespace std;
class Point
{
int x,y; //横坐标x和纵坐标y
public:
Point(int x=0,int y=0); //带有默认值的构造函数
Point(Point &p); //拷贝构造函数
int getx(); //获取横坐标x的值
int gety(); //获取纵坐标y的值
};
//在此添加Point类的实现代码
class Distance
{
public:
Distance(Point q1,Point q2); //构造函数
double getdist(); //获取点p1和点p2之间的距离
private:
Point p1,p2; //点p1和点p2
double dist; //表示点p1和点p2之间的距离
};
//在此添加Distance类的实现代码
int main()
{
Point p1(5,3);
Point *p;
//在此添加相应的代码
Point p2(*p);
//在此添加相应的代码
return 0;
}
#include
#include
using namespace std;
class Point
{
int x,y; //横坐标x和纵坐标y
public:
Point(int x=0,int y=0); //带有默认值的构造函数
Point(Point &p); //拷贝构造函数
int getx(); //获取横坐标x的值
int gety(); //获取纵坐标y的值
};
//在此添加Point类的实现代码
class Distance
{
public:
Distance(Point q1,Point q2); //构造函数
double getdist(); //获取点p1和点p2之间的距离
private:
Point p1,p2; //点p1和点p2
double dist; //表示点p1和点p2之间的距离
};
//在此添加Distance类的实现代码
int main()
{
Point p1(5,3);
Point *p;
//在此添加相应的代码
Point p2(*p);
//在此添加相应的代码
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询