Java sqr sqrt(Short a)

Here you can find the source of sqrt(Short a)

Description

Sqrt.

License

Open Source License

Parameter

Parameter Description
a the a

Return

the double

Declaration

public static double sqrt(Short a) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*from w ww.  j  ava2s  . c o m*/
     * Sqrt.
     *
     * @param a the a
     * @return the double
     */
    public static double sqrt(Short a) {
        return Math.sqrt(a.doubleValue());
    }

    /**
     * Sqrt.
     *
     * @param a the a
     * @return the double
     */
    public static double sqrt(Integer a) {
        return Math.sqrt(a.doubleValue());
    }

    /**
     * Sqrt.
     *
     * @param a the a
     * @return the double
     */
    public static double sqrt(Float a) {
        return Math.sqrt(a.doubleValue());
    }

    /**
     * Sqrt.
     *
     * @param a the a
     * @return the double
     */
    public static double sqrt(Long a) {
        return Math.sqrt(a.doubleValue());
    }

    /**
     * Sqrt.
     *
     * @param a the a
     * @return the double
     */
    public static double sqrt(Double a) {
        return Math.sqrt(a);
    }
}

Related

  1. sqrt(float f)
  2. sqrt(int n)
  3. sqrt(int val)
  4. sqrt(long val)
  5. sqrt(long x)
  6. sqrt(short value)
  7. sqrt2(float x)
  8. sqrt2sq(double x, double y)
  9. sqrt_double(double d)