cos

コサイン値の返却

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

【説明】
x ラジアンのコサイン(余弦)を返却します。

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

【戻り値】
コサイン(余弦)値

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

#define MPI  3.14159265358979323846

int main(void)
{
    double y;

    y = cos(45.0 * MPI / 180.0);
    printf("45°のコサイン値 = %f\n", y);

    return 0;
}
【実行結果】
45°のコサイン値 = 0.707107

戻る


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