在TC中数值0.5转换成SIN(X),X应该是角度,为什么显示0.4762?
在TC中数值0.5转换成SIN(X),X应该是角度,为什么显示0.4762?
#include <stdio.h>
#include <math.h>
int main(void)
{
double result,y, x =0.5,z=360/(2*3.1415926);
result = sin(x);
y=z*result;
printf("The sin() of %lf is %lf\n", x, y);
getch();
}