#include <stdio.h> #include <math.h> //三角函数的参数为弧度,是角度必须转化为弧度 //3.14=180,1度=3.14/180,转化方法:(3.14/180)*角度值 main() { float a,b,c; c=30; printf("%f",sin(c)); b=30*3.14/180; printf("\n%f",sin(b)); getchar(); }
搜索
复制