有的。在java.lang.Math里面:
static double acos(double a) 
          Returns the arc cosine of an angle, in the range of 0.0 through pi. 
static double asin(double a) 
          Returns the arc sine of an angle, in the range of -pi/2 through pi/2. 
static double atan(double a) 
          Returns the arc tangent of an angle, in the range of -pi/2 through pi/2. 
static double atan2(double y, double x) 
          Converts rectangular coordinates (x, y) to polar (r, theta). 

解决方案 »

  1.   

    1.
       tan
    public static double tan(double a)
    Returns the trigonometric tangent of an angle. Special cases: 
    If the argument is NaN or an infinity, then the result is NaN. 
    If the argument is zero, then the result is a zero with the same sign as the argument.
    A result must be within 1 ulp of the correctly rounded result. Results must be semi-monotonic. 
    Parameters:
    a - an angle, in radians. 
    Returns:
    the tangent of the argument.2.
      public static double atan(double a)
    Returns the arc tangent of an angle, in the range of -pi/2 through pi/2. Special cases: 
    If the argument is NaN, then the result is NaN. 
    If the argument is zero, then the result is a zero with the same sign as the argument.
    A result must be within 1 ulp of the correctly rounded result. Results must be semi-monotonic. 
    Parameters:
    a - the value whose arc tangent is to be returned. 
    Returns:
    the arc tangent of the argument.