计算直角三角形斜边
作者:互联网
计算直角三角形的斜边的方法
#include <stdio.h>
#include <math.h>
#include <algorithm>
#include <iostream>
using namespace std;
double dist(double x1,double y1,double x2,double y2)
{
double dx=x1-x2;
double dy=y1-y2;
return hypot(dx,dy);//我们可以直接使用hypot函数
}
int main()
{
double x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
cout<<dist(x1,y1,x2,y2)<<endl;
return 0;
}
标签:include,直角三角形,double,x1,斜边,x2,计算,y1,y2 来源: https://blog.csdn.net/weixin_43340029/article/details/101385222