C 標(biāo)準(zhǔn)庫(kù) <math.h>
斜邊是直角三角形的最長(zhǎng)邊。當(dāng)提供其他兩邊時(shí),hypot()函數(shù)用于計(jì)算直角三角形的斜邊長(zhǎng)。
double hypot(double p, double b);
在數(shù)學(xué)上h = √(p2+b2)等同于C語(yǔ)言編程h = hypot(p, b);。
hypot()函數(shù)在math.h 頭文件中定義 。
#include <stdio.h> #include <math.h> int main() { double p, b; double hypotenuse; p = 5.0; b = 12.0; hypotenuse = hypot(p, b); printf("hypot(%.2lf, %.2lf) = %.2lf", p, b, hypotenuse); return 0; }
輸出結(jié)果
hypot(5.00, 12.00) = 13.00