从键盘输 入角度,输出该角度正弦、正切、余弦值,要求所有 结果保留两位小数Python 代码
时间: 2023-12-20 12:04:20 浏览: 72
同样可以使用Python内置的math库中的sin、tan和cos函数来计算三角函数值,然后使用round函数来保留两位小数。具体代码如下:
```python
import math
angle = float(input("请输入角度:"))
sin_val = math.sin(math.radians(angle))
cos_val = math.cos(math.radians(angle))
tan_val = math.tan(math.radians(angle))
sin_result = round(sin_val, 2)
cos_result = round(cos_val, 2)
tan_result = round(tan_val, 2)
print("正弦值为:", sin_result)
print("余弦值为:", cos_result)
print("正切值为:", tan_result)
```
其中,输入的角度需要先转换为弧度才能使用math库中的sin、cos和tan函数计算。最后使用print函数输出结果。
阅读全文