double hypot (double x     , double y);
      float hypot (float x      , float y);
long double hypot (long double x, long double y);
     double hypot (Type1 x      , Type2 y);       // additional overloads


hypot حساب الوتر في المثلث القائم الزاوية (Compute hypotenuse)

حساب الوتر في المثلث القائم الزاوية حسب نظرية فيتاغورس



المعطيات
  • الضلع الأول في المثلثx
  • الضلع الثاني في المثلتy


مثال
    /* hypot example */
    #include <stdio.h>      /* printf */
    #include <math.h>       /* hypot */

    int main ()
    {
    double leg_x, leg_y, result;
    leg_x = 3;
    leg_y = 4;
    result = hypot (leg_x, leg_y);
    printf ("%f, %f and %f form a right-angled triangle.\n",leg_x,leg_y,result);
    return 0;
    }

المخرجات
3.000000, 4.000000 and 5.000000 form a right-angled triangle.


أنظر أيضا
powايجاد قيمة الاس
sqrtالجذر التربيعي
cbrtالجذر التكعيبي
hypotحساب الوتر في المثلث القائم الزاوية