【疑问】asin函数的使用?
今天发现数学库函数asin好象不太对劲,这个反正旋的计算好想不是我想要计算出来的结果,好奇怪啊?谁能告诉我一下是怎么回事吗? #include "stdafx.h" #include <math.h> #include <stdio.h> #include <stdlib.h> #include <errno.h>
void main( void ) { double x, y;
printf( "Enter a real number between -1 and 1: " ); scanf( "%lf", &x ); y = asin( x ); printf( "Arcsine of %f = %f\n", x, y ); y = acos( x ); printf( "Arccosine of %f = %f\n", x, y ); }