Java实现数学三角函数sin、cos、tan的计算

2020-03-03  本文已影响0人  cao苗子
public class Test {
    public static void main(String[] args) {
        double a = Math.toRadians(90);//把数字90 转换成 90度
        System.out.println(Math.sin(a));//计算sin 90度
        double b = Math.toRadians(30);
        System.out.println(Math.cos(b));
        double c = Math.toRadians(20);
        System.out.println(Math.tan(c));
    }
}
上一篇下一篇

猜你喜欢

热点阅读