在Java中,Math.sin()方法接受弧度作為參數而不是角度。因此,如果你想要傳入角度作為參數,你需要將角度轉換為弧度。可以通過以下方法將角度轉換為弧度:
double degrees = 45.0;
double radians = Math.toRadians(degrees);
double sinValue = Math.sin(radians);
System.out.println("Sin value of " + degrees + " degrees is: " + sinValue);
在這個例子中,我們將角度45度轉換為弧度,然后使用Math.sin()方法計算sin值。