hypot.c 805 Bytes
/*
=============================================================================
        Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
        
        $RCSfile: hypot.c,v $
        $Revision: 1.1.1.1 $
        $Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:hypot
-----------------------------------------------------------------------------
書式:  #include <math.h>
        double  hypot(double x, double y);
引数:  x 1辺の長さ
        y 1辺の長さ
戻り値:2辺 x と y から、直角三角形の斜辺の長さを返す。
説明:  2辺 x と y から、直角三角形の斜辺の長さを計算する。
-----------------------------------------------------------------------------
*/
#include    "math.h"

double  hypot(double x, double y)
{
    return  sqrt(x*x + y*y);
}