Java floor floorSqrt(long i)

Here you can find the source of floorSqrt(long i)

Description

floor Sqrt

License

Open Source License

Declaration

public static final int floorSqrt(long i) 

Method Source Code

//package com.java2s;

public class Main {
    public static final int floorSqrt(long i) {
        return (int) Math.sqrt(i);
    }/*from  w  w w. j  av  a2  s  .  c o m*/
}

Related

  1. floorPowerOf2(final int x)
  2. floorPowerOf2(int n)
  3. floorPowerOfTwo(final int a)
  4. floorSec(long milli)
  5. floorSec(long valueMs)
  6. floorToLong(float pX)
  7. floorToNearestNumberDivisibleByFour(long number)
  8. floorToPowerofTwo(int i)
  9. floorTs(long timestamp, int aggregationWindow)