C 速查手冊
11.1.10 hypot()
math.h 的函數 (function) hypot() 需要兩個參數 (parameter) ,回傳兩個參數平方和的平方根,也就是直角三角形的斜邊長。預設回傳值 (return value) 及參數的資料型態 (data type) 為 double ,另有 float 型態的 hypotf() , long double 型態的 hypotl() 。
hypot() 的函數原型 (prototype) 如下
double hypot(double, double); |
float hypotf(float, float); |
long double hypotl(long double, long double); |
以下程式示範函數 hypot() 的使用
#include <stdio.h>
#include <math.h>
int main(void)
{
printf("%f\n", hypot(3, 4));
printf("%f\n", hypot(5, 12));
printf("%f\n", hypot(7, 24));
printf("%f\n", hypot(8, 15));
printf("%f\n", hypot(9, 12));
printf("%f\n", hypot(10, 24));
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:chypot.c
功能:示範 math.h 中函數 hypot() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc chypot.c |
$ a.out |
5.000000 |
13.000000 |
25.000000 |
17.000000 |
15.000000 |
26.000000 |
$ |