hypot()

计算两点之间的距离

#include
#include
using namespace std;
int main()
{
     //计算两点之间的距离
    double x1,y1,x2,y2;
    cout<<"please input the two point:"<>x1>>y1>>x2>>y2;
    cout<





你可能感兴趣的:(hypot())