温馨提示×

sin()函数在c语言编程中的实际案例

小樊
84
2024-08-27 14:42:24
栏目: 编程语言

在C语言编程中,sin()函数是一个用于计算正弦值的数学函数

#include<stdio.h>
#include <math.h>

int main() {
    double angle_in_degrees, angle_in_radians, result;

    printf("Enter an angle in degrees: ");
    scanf("%lf", &angle_in_degrees);

    // 将角度转换为弧度
    angle_in_radians = angle_in_degrees * (M_PI / 180.0);

    // 计算正弦值
    result = sin(angle_in_radians);

    printf("The sine of %lf degrees is: %lf\n", angle_in_degrees, result);

    return 0;
}

这个程序首先提示用户输入一个角度(以度为单位)。然后,它将该角度转换为弧度,因为sin()函数接受弧度作为参数。最后,它使用sin()函数计算正弦值并将结果打印到屏幕上。

要编译和运行此程序,请确保已安装C编译器(如GCC)和数学库。在命令行中,可以使用以下命令进行编译:

gcc -o sine_example sine_example.c -lm

然后,运行生成的可执行文件:

./sine_example

现在,你可以输入一个角度(以度为单位),程序将计算并显示其正弦值。

0