之前某个省赛当时玩麻了
有
1° = π/180弧度
180° = π弧度
C++版本
圆周函数 #define PI 3.1415926535 sin(x*1.0/180*PI); cos(x*1.0/180*PI);
python版本
函数 | 描述 |
---|---|
sin(x) | 返回x弧度的正弦值 |
cos(x) | 返回x弧度的余弦值 |
tan(x) | 返回x弧度的正切值 |
asin(x) | 返回x的反正弦弧度值 |
acos(x) | 返回x的反余弦弧度值 |
atan(x) | 返回x的反正切弧度值 |
degrees(x) : 将弧度转化为角度。
radians(x) : 将角度转化为弧度。
import math a = math.degrees(math.pi/2) print(a) b = math.radians(180) print(b) print(math.sin(b))标签:返回,三角函数,打印,弧度,180,print,PI,math From: https://www.cnblogs.com/jerrytangcaicai/p/16913463.html
''' 输出: 90.0 3.141592653589793 '''