原|2024-01-29 11:11:03|浏览:42
sin(x)多少度等于1,求解的程式如下:
```python
import math
def sin_degree_equals_1():
for i in range(360):
radian = math.radians(i) # 將角度轉換為弳度
sin_value = math.sin(radian) # 計算sin值
if sin_value == 1: # 若sin值等於1,則輸出對應的角度
return i
return "No solution found"
result = sin_degree_equals_1()
print(result)
```
執行程式後,會輸出`90`。