関数名:sin
ヘッダーファイル: <math.h>
関数プロトタイプ: double sin(double x);
関数: サイン関数
パラメータ: double x 演算のラジアン
戻り値: ラジアンのサイン値を返します。
計算式: 1°=π/180°ラジアン
プログラム例:角度30度の正弦を求め、結果を出力
#include<stdio.h>#include<math.h>#definePI3.14159265intmain(void){doubleresult,x=30*PI/180;//30 度の角度をラジアンに変換 result=sin(x);printf ( Thesin()of%lfis%lfn,x,result);return0;}
実行結果:
Thesin()of0.523599は0.500000