C 速查手冊

11.1.7 sqrt()

math.h函數 (function) sqrt() 回傳參數 (prameter) 的平方根,預設回傳值 (return value) 及參數的資料型態 (data type) 為 double ,另有 float 型態的 sqrtf()long double 型態的 sqrtl()

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

double sqrt(double);
float sqrtf(float);
long double sqrtl(long double);

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

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

int main(void)
{
    printf("%f\n", sqrt(25));
    printf("%f\n", sqrt(64.0));
    printf("%f\n", sqrt(27.5));
    printf("%f\n", sqrt(30.25));
    printf("%f\n", sqrt(81.02));
    printf("%f\n", sqrt(9.3));
    
    return 0;
}

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

編譯後執行,結果如下

$ gcc csqrt.c
$ a.out
5.000000
8.000000
5.244044
5.500000
9.001111
3.049590
$

上一頁 11.1.6 round()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.1.8 cbrt()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁