Java sqr sqrtInt(Integer num)

Here you can find the source of sqrtInt(Integer num)

Description

sqrt Int

License

Open Source License

Declaration

public static int sqrtInt(Integer num) 

Method Source Code

//package com.java2s;

public class Main {
    public static int sqrtInt(Integer num) {
        Double rs = Math.sqrt(num.longValue());
        return rs.intValue();
    }//w  w  w . j  a  v a 2s .c om
}

Related

  1. sqrt2(float x)
  2. sqrt2sq(double x, double y)
  3. sqrt_double(double d)
  4. sqrt_float(float value)
  5. sqrt_long(final long x)