double cbrt (double x);
      float cbrt (float x);
long double cbrt (long double x);
     double cbrt (T x);           // additional overloads for integral types


cbrt حساب الجذر التكعيبي (Compute cubic root)

حساب الجذر التكعيبي



المعطيات
  • القيمة المراد حساب جذرها x


مثال

    /* cbrt example */
    #include <stdio.h>      /* printf */
    #include <math.h>       /* cbrt */

    int main ()
    {
    double param, result;
    param = 27.0;
    result = cbrt (param);
    printf ("cbrt (%f) = %f\n", param, result);
    return 0;
    }

المخرجات

cbrt (27.000000) = 3.000000


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