C 語言標準函數庫分類導覽 - math.h cbrt()

math.h 的函數 cbrt() 回傳參數的立方根,預設回傳值及參數的資料型態為 double ,另有 float 型態的 cbrtf() , long double 型態的 cbrtl() 。



cbrt() 的函數原型如下
double cbrt(double);
float cbrtf(float);
long double cbrtl(long double);


以下程式示範函數 cbrt() 的使用
#include <stdio.h>
#include <math.h>

int main(void)
{
    printf("%f\n", cbrt(125.0));
    printf("%f\n", cbrt(35.937));
    printf("%f\n", cbrt(27));
    printf("%f\n", cbrt(42.2));
    printf("%f\n", cbrt(97.325));
    printf("%f\n", cbrt(88.025));
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:ccbrt.c
    功能:示範 math.h 中函數 cbrt() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: