C++每日打卡
求两点之间距离
定义一个Point类,有两个数据成员:x和y, 分别代表x坐标和y坐标,并有若干成员函数。
定义一个函数Distance(), 用于求两点之间的距离。
#include<iostream>
#include<math.h>
#include<iomanip>
using namespace std;
class Point
{
double x,y;
public:
void Distance(double x1,double y1,double x2,double y2);
};
void Point::Distance(double x1,double y1,double x2,double y2)
{
double x=(x1-x2)*(x1-x2);
double y=(y1-y2)*(y1-y2);
cout<<setiosflags(ios::fixed)<<setprecision(2)<<sqrt(x+y);
}
int main()
{
Point d;
double x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
d.Distance(x1,y1,x2,y2);
return 0;
}