小楼寂寞新雨月 发表于 2014-9-13 09:29:00

C标准库之数学函数__hypot

本帖最后由 小楼寂寞新雨月 于 2014-9-13 13:01 编辑

功能:求直角三角形斜边的长度
函数原型:double_hypot(double x,double y);

要求:
函数需要的头文件
_hypot<math.h>


参数:

参数说明
x直角三角形直角边
y直角三角形直角边

返回值:直角三角形斜边长度
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <math.h>
int main()
{
double a =3,b = 4,c;                //为变量赋初值
c = _hypot(a,b);                   //求直角三角形的斜边长度
printf("%f\n",c);
}




页: [1]
查看完整版本: C标准库之数学函数__hypot