易百教程

将度数转换为弧度

什么是弧度?

弧度是角的度量单位,它是由国际单位制导出的单位,单位缩写是rad。定义:弧长等于半径的弧,其所对的圆心角为1弧度。

它使用值pi而不是度,它不是具有360度的圆,而是具有2pi弧度。1弧度等于57.2957795度,1度等于0.01745329弧度。

#include <stdio.h> 

int main()
{ 
   float degrees,radians; 

   printf("Enter an angle in degrees: "); 
   scanf("%f",&degrees); 
   radians = 0.0174532925*degrees; 
   printf("%.2f degrees is %.2f radians.\\n", degrees,radians); 
   return(0); 
}

执行上面示例代码,得到以下结果:

hema@ubuntu:~/book$ gcc -o main main.c
hema@ubuntu:~/book$ ./main
Enter an angle in degrees: 25.55
25.55 degrees is 0.45 radians.