hypot

功 能: 計算直角三角形的斜邊長。

頭檔案:<math.h>、<cmath> 。

用 法: double hypot(double x, double y);

基本介紹

  • 外文名:hypot
  • 功 能:計算直角三角形的斜邊長
  • 頭檔案:<math.h>、<cmath>
  • 用 法: double hypot(double x,  y
基本信息,程式例,

基本信息

功 能: 計算直角三角形的斜邊長。
頭檔案:<math.h>、<cmath> 。
用 法: double hypot(double x, double y);

程式例

#include <stdio.h>#include <math.h>int main(void){    double result;    double x = 3.0;    double y = 4.0;    result = hypot(x, y);    printf("The hypotenuse is: %lf\n", result);    return 0;}

相關詞條

熱門詞條

聯絡我們