Java Math三角函数的使用--数值转换

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers numbers
      double x = 45;
      double y = -180;

      // convert them to radians
      x = Math.toRadians(x);
      y = Math.toRadians(y);

      // print the trigonometric sine for these doubles
      System.out.println("Math.sin(" + x + ")=" + Math.sin(x));
      System.out.println("Math.sin(" + y + ")=" + Math.sin(y));

   }
}


转载于:https://my.oschina.net/ososchina/blog/362968

你可能感兴趣的:(Java Math三角函数的使用--数值转换)