题目描述
定义一个二维平面中的点(point)类,类中的数据成员为点的坐标,然后定义友元函数dist()用来计算两点之间的距离。
将下面的程序1 和程序2填写完整。
程序1 :
#include
#include
#include
using namespace std;
……………………………………
……………………………………
……………………………………
int main()
{
int n;
double x1,x2,y1,y2;
cin>>n;
while (n–)
{
cin>>x1>>y1>>x2>>y2;
point p1(x1,y1),p2(x2,y2);
cout<<fixed<<setprecision(3)<<dist(p1,p2)<<endl;
}
return 0;
}
程序2:
#include
#include
#include
using namespace std;
……………………………………
……………………………………
……………………………………
int main()
{ int n; double x1,x2,y1,y2; test t;
cin>>n;
while (n–)
{ cin>>x1>>y1>>x2>>y2;
point p1(x1,y1),p2(x2,y2);
cout<<fixed<<setprecision(3)<<t.dist(p1,p2)<<endl;
}
}
输入
输入包含n组测试例, 第1行是测试组数。
第2行–第n+1行为测试数据,每组测数据有4个实数,表示 2个点的坐标(x1,y1)和(x2,y2)。
输出
两点之间的距离(保留3位小数)。
样例输入 Copy
2
0 0 3 4
1 1 2 2
样例输出 Copy
5.000
1.414
# include <iostream>
using namespace std;
# include <iomanip>
class point
{
public:
int x1;
int y1;
point(int, int);
friend double dist(point& t1, point& t2);
};
point::point(int x, int y)
{
x1 = x;
y1 = y;
}
double dist(point& t1, point& t2)
{
double d;
int q1, q2;
q1 = t1.x1 - t2.x1;
q2 = t1.y1 - t2.y1;
d = sqrt(q1 * q1 + q2 * q2);
return d;
}
int main()
{
int n;
double x1, x2, y1, y2;
cin >> n;
while (n--)
{
cin >> x1 >> y1 >> x2 >> y2;
point p1(x1, y1), p2(x2, y2);
cout << fixed << setprecision(3) << dist(p1, p2) << endl;
}
return 0;
}