当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Vector hypot()用法及代码示例


此函数求两个数的平方和的平方根。它代表斜边,用于求直角三角形的斜边。

考虑三个数字 x、y 和 z:

直角三角形的斜边 = ˆšx2+y2在 3d 空间中距原点的距离=∧x2+y2+z2

用法

直角三角形的语法是:

double hypot(double x, double y);
float hypot(float x, float y);
long double hypot(long double x, long double y);
promoted hypot(type1  x, type2 y);

3d 空间的语法是:

double hypot(double x, double y, double z);
float hypot(float x, float y, float z);
long double hypot(long double x, long double y, long double z);
promoted hypot(type1  x, type2 y, type3 z);

注意:如果任何参数是 long double 类型,则返回类型将提升为 long double。如果不是,则返回类型被提升为 double。

参数

(x,y,z):x,y 和 z 是浮点型或整数型的值。

返回值

它返回两个数的平方和的立方根。

例子1

让我们看一个简单的例子。

#include <iostream>
#include<cmath>
using namespace std;
int main()
{
  int x=2;
  int y=3;
  cout<<"sides of a right angled triangle are:";
  cout<<x<<","<<y<<'\n';
  cout<<"third side of a triangle is:"<<hypot(x,y);
  return 0;
}

输出:

sides of a right angled triangle are:2,3
third side of a triangle is:3.60555   





相关用法


注:本文由纯净天空筛选整理自 C++ Vector hypot()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。