设计一个点类,其中包括一对坐标数据成员、一个求两点之间距离的友元函数dist和显示坐标点的成员函数.
展开全部
#include <iostream>
#include <cmath>
using namespace std;
class Point //Point类定义
{
public: //外部接口
Point(int xx=0, int yy=0) {X=xx;Y=yy;}
int GetX() {return X;}
int GetY() {return Y;}
friend float fDist(Point &a, Point &b); //友元函数声明
private: //私有数据成员
int X,Y;
};
float fDist(Point &p1, Point &p2) //友元函数实现
{ double x=double(p1.X-p2.X); //通过对象访问私有数据成员
double y=double(p1.Y-p2.Y);
return float(sqrt(x*x+y*y));
}
void main() //主函数
{
Point myp1(1,1),myp2(4,5); //定义Point类的对象
cout<<"The distance is:";
cout<<fDist(myp1,myp2)<<endl; //计算两点间的距离
}
#include <cmath>
using namespace std;
class Point //Point类定义
{
public: //外部接口
Point(int xx=0, int yy=0) {X=xx;Y=yy;}
int GetX() {return X;}
int GetY() {return Y;}
friend float fDist(Point &a, Point &b); //友元函数声明
private: //私有数据成员
int X,Y;
};
float fDist(Point &p1, Point &p2) //友元函数实现
{ double x=double(p1.X-p2.X); //通过对象访问私有数据成员
double y=double(p1.Y-p2.Y);
return float(sqrt(x*x+y*y));
}
void main() //主函数
{
Point myp1(1,1),myp2(4,5); //定义Point类的对象
cout<<"The distance is:";
cout<<fDist(myp1,myp2)<<endl; //计算两点间的距离
}
展开全部
#include<math.h>
class point
{ private:
float x,y;
public:
point(void) //无参构造函数
{x=0;y=0;}
point(float a,float b) //构造函数重载
{x=a ; y=b; }
friend double dist(point A,point B);//友元函数定义
void show();
};
double dist(point A,point B)
{
return sqrt((A.x-B.x)*(A.x-B.x)+(A.y-B.y)*(A.y-B.y));
}
void point::show()
{
cout<<"x="<<x;
cout<<" y="<<y;
cout<<endl;
}
class point
{ private:
float x,y;
public:
point(void) //无参构造函数
{x=0;y=0;}
point(float a,float b) //构造函数重载
{x=a ; y=b; }
friend double dist(point A,point B);//友元函数定义
void show();
};
double dist(point A,point B)
{
return sqrt((A.x-B.x)*(A.x-B.x)+(A.y-B.y)*(A.y-B.y));
}
void point::show()
{
cout<<"x="<<x;
cout<<" y="<<y;
cout<<endl;
}
追问
主函数呢?
追答
不好意思,忘了~
//文件名:point.h
//设计一个点类,其中包括一对坐标数据成员、一个求两点之间距离的友元函数dist和显示坐标点的成员函数.
#include
class point
{ private:
float x,y;
public:
point(void) //无参构造函数
{x=0;y=0;}
point(float a,float b) //构造函数重载
{x=a ; y=b; }
friend double dist(point A,point B);
void show();
};
double dist(point A,point B)
{
return sqrt((A.x-B.x)*(A.x-B.x)+(A.y-B.y)*(A.y-B.y));
}
void point::show()
{
cout
#include"point.h"
void main()
{
point pt1(1,2),pt2(2,5);
pt1.show();
cout<<"两点距离为:"<<dist(pt1,pt2)<<endl;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询