点的距离
程序员文章站
2022-06-07 15:15:41
...
代码:
//点的距离
#include<iostream>
#include<cmath>//c++中使用数学函数需要的头文件
#include<iomanip>//控制格式输出必须有的头文件
using namespace std;
//类
class CPoint{
public:
int x,y;
CPoint(){
}
CPoint(int xx,int yy)//构造函数
{
x=xx;
y=yy;
}
void operator-(CPoint p)//重载运算符
{
double d1,d;
d1=1.0*(x-p.x)*(x-p.x)+1.0*(y-p.y)*(y-p.y);
d=sqrt(d1);
cout<<fixed<<setprecision(2)<<d<<endl;//保留两位小数输出
}
};
int main()
{
int m;
cin>>m;
int x1,y1,x2,y2;
while(m--)
{
cin>>x1>>y1>>x2>>y2;
CPoint p1(x1,y1);
CPoint p2(x2,y2);
p1-p2;//重载运算符的使用
}
return 0;
}
上一篇: 判断数字位置