hypot

[機能]

  直角三角形の斜辺長(ユークリッド距離)を計算します.

[形式]
#include <math.h>

double hypot(double x, double y)
	x, y : 倍精度浮動小数点数.sqrt( x * x + y * y ) が計算されます.		
[使用例]

  1. 直角三角形の斜辺長の計算
    #include <stdio.h>
    #include <math.h>
    
    int main()
    {
    	double x;
    
    	x = hypot(3.0, 4.0);
    
    	printf("二辺の長さが 3.0 と 4.0 の直角三角形の斜辺は %5.1f\n", x);
    
    	return 0;
    }
    			
    (出力)
    二辺の長さが 3.0 と 4.0 の直角三角形の斜辺は   5.0			
[参照]

sqrt

菅沼ホーム 本文目次 演習問題解答例 付録目次 索引