如果把P1(3.0,4.O)中的3.0赋给X,4.0赋给Y
程序int main()
{
Point p1(3.0, 4.0), p2(6.0, 8.0);
p1.Getxy();
p2.Getxy();
double d = Distance(p1, p2);
cout << "两点之间的距离是:" << d;
return 0;
}
执行到P1.Getxy();时,输出的应该是(3.0,4.0)啊,但结果是:(3,4)
程序int main()
{
Point p1(3.0, 4.0), p2(6.0, 8.0);
p1.Getxy();
p2.Getxy();
double d = Distance(p1, p2);
cout << "两点之间的距离是:" << d;
return 0;
}
执行到P1.Getxy();时,输出的应该是(3.0,4.0)啊,但结果是:(3,4)