码迷,mamicode.com
首页 > 其他好文 > 详细

*1033 计算线段长度

时间:2017-12-03 16:25:30      阅读:119      评论:0      收藏:0      [点我收藏+]

标签: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  } 
cmath是c++语言中的库函数,其中的c表示函数是来自c标准库的函数,math为数学常用库函数。编译时必须加上参数「-lm」(表示连结至数学函式库)。
 
cmath库函数列表:
std::pow();//求幂函数
std::exp();//指数函数
std::sqrt();//平方根
以及:log,log10;sin;cos;tan等函数。

*1033 计算线段长度

标签:std   clu   线段   double   cst   using   长度   color   调用   

原文地址:http://www.cnblogs.com/tflsnoi/p/7966199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!