-1
的罪我有folling:的Java獲得COS或角度
double angle = 0.0;
double rad = Math.toRadians(angle);
double sinIs = Math.sin(rad);
double cosIs = Math.cos(rad);
我希望的結果是:
rad=0.0
sinIs=0
cosIs=1
但是返回Math.toRadians(0.0)將返回
rad=2.356194490192345
無法重現。我剛剛測試了'Math.toRadians(0.0)== 0.0'。 – Tunaki
Nope:http://ideone.com/lfas6N。雖然FWIW,相當於135度。 –
它可能會幫助http://stackoverflow.com/questions/13951136/how-to-use-math-cos-math-sin –