sin

サイン値の返却

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

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

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

【戻り値】
サイン(正弦値)値

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

#define MPI  3.14159265358979323846

int main(void)
{
    double y;

    y = sin(60.0 * MPI / 180.0);
    printf("60°のサイン値 = %f\n", y);

    return 0;
}

【実行結果】
60°のサイン値 = 0.866025

戻る


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