tan

タンジェント値の返却

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

【説明】
x ラジアンのタンジェント(正接)を返却します。

【引数】
double x :角度(ラジアン)

【戻り値】
タンジェント(正接)値

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

#define MPI  3.14159265358979323846

int main(void)
{
    double y;

    y = tan(30.0 * MPI / 180.0);
    printf("30°のタンジェント値 = %f\n", y);

    return 0;
}
【実行結果】
30°のタンジェント値 = 0.577350

戻る


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