Java toRadians() 方法
toRadians() 方法用于將角度轉(zhuǎn)換為弧度。
語(yǔ)法
double toRadians(double d)
參數(shù)
d -- 任何原生數(shù)據(jù)類型。
返回值
該方法返回 double 值。
實(shí)例
public class Test{ public static void main(String args[]){ double x = 45.0; double y = 30.0; System.out.println( Math.toRadians(x) ); System.out.println( Math.toRadians(y) ); } }
編譯以上程序,輸出結(jié)果為:
0.7853981633974483 0.5235987755982988
更多建議: