在C語(yǔ)言中,sin函數(shù)是數(shù)學(xué)庫(kù)函數(shù),用于計(jì)算一個(gè)角的正弦值。sin函數(shù)的原型定義在<math.h>頭文件中,其使用方法如下:
#include <math.h>
double sin(double x);
其中,參數(shù)x為一個(gè)角的弧度值,返回值為該角的正弦值。
示例代碼:
#include <stdio.h>
#include <math.h>
int main() {
double angle = 1.57; // 90度角的弧度值為1.57
double sine = sin(angle);
printf("Sin of %f is %f\n", angle, sine);
return 0;
}
注意:sin函數(shù)接受的角度單位是弧度制,如果需要使用角度制,可以先將角度轉(zhuǎn)換為弧度,例如角度制轉(zhuǎn)弧度制的公式為:弧度 = 角度 * PI / 180。