这个问题已经在这里有了答案 :
4年前关闭。
使用Math.cos函数在Java中计算余弦90时遇到一些问题:
public class calc{
private double x;
private double y;
public calc(double x,double y){
this.x=x;
this.y=y;
}
public void print(double theta){
x = x*Math.cos(theta);
y = y*Math.sin(theta);
System.out.println("cos 90 : "+x);
System.out.println("sin 90 : "+y);
}
public static void main(String[]args){
calc p = new calc(3,4);
p.print(Math.toRadians(90));
}
}
当我计算cos90或cos270时,它给了我荒谬的值。应该为0。我使用91或271测试,给出了接近0的正确值。
我应该怎么做才能使cos 90的输出= 0?因此,它使输出x = 0和y = 4。
谢谢建议