sqrt

x の平方根を返却

【書式】
#include <math.h>
double sqrt(double x);

【説明】
x の平方根を返却します。x が負の場合、定義城エラーが発生します。

【引数】
double x :非負の浮動小数点値

【戻り値】
平方根

【使用例】
#include <math.h>
#include <stdio.h>

int main(void)
{
    double x;

    for (x = 0.0; x <= 10.0; x += 1.0) {
        printf("%f の 平方根は %f\n", x, sqrt(x));
    }
    return 0;
}
【実行結果】
0.000000 の 平方根は 0.000000
1.000000 の 平方根は 1.000000
2.000000 の 平方根は 1.414214
3.000000 の 平方根は 1.732051
4.000000 の 平方根は 2.000000
5.000000 の 平方根は 2.236068
6.000000 の 平方根は 2.449490
7.000000 の 平方根は 2.645751
8.000000 の 平方根は 2.828427
9.000000 の 平方根は 3.000000
10.000000 の 平方根は 3.162278

戻る


banner
初心者のためのポイント学習C言語」
Copyright(c) 2000-2004 TOMOJI All Rights Reserved