c語(yǔ)言sin函數(shù)的使用方法是什么

小億
471
2024-04-16 17:19:07

在C語(yǔ)言中,sin函數(shù)是數(shù)學(xué)庫(kù)函數(shù),用于計(jì)算一個(gè)角的正弦值。sin函數(shù)的原型定義在<math.h>頭文件中,其使用方法如下:

  1. 包含頭文件:
#include <math.h>
  1. 使用sin函數(shù):
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。

0