标签:std clu 线段 double cst using 长度 color 调用
1 #include<cstdio> 2 #include<cmath>//调用sqrt函数必须包含cmath头文件 3 using namespace std; 4 int main() 5 { 6 double Xa,Ya,Xb,Yb,len; 7 scanf("%lf%lf%lf%lf",&Xa,&Ya,&Xb,&Yb); 8 len=sqrt((Xb-Xa)*(Xb-Xa)+(Yb-Ya)*(Yb-Ya));//sqrt为开根函数 9 printf("%.3lf",len); 10 11 return 0; 12 }
标签:std clu 线段 double cst using 长度 color 调用
原文地址:http://www.cnblogs.com/tflsnoi/p/7966199.html