1051: C++:友元1(两点之间的距离)

题目描述
定义一个二维平面中的点(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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值