C 速查手冊

11.1.14 log()

math.h函數 (function) log() 回傳參數 (parameter) 以常數 e 為底數所計算出的對數值。預設回傳值 (return value) 及參數的資料型態 (data type) 為 double ,另有 float 型態的 logf()long double 型態的 logl()

tan() 的函數原型 (prototype) 如下

double log(double);
float logf(float);
long double logl(long double);

以下程式示範函數 log() 的使用

#include <stdio.h>
#include <math.h>

int main(void)
{
    double i = 1.0;
    
    while (i <= 10.0) {
        printf("%f\n", log(i));
        i += 1.0;
    }
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:clog.c
    功能:示範 math.h 中函數 log() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc clog.c
$ a.out
0.000000
0.693147
1.098612
1.386294
1.609438
1.791759
1.945910
2.079442
2.197225
2.302585
$

上一頁 11.1.13 tan()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.1.15 log2()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁