當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。