Java sqr sqrt(final double i)

Here you can find the source of sqrt(final double i)

Description

Returns rounded square root for the specified integer number.

License

Open Source License

Parameter

Parameter Description
i integer number to process

Return

rounded square root for the specified integer number

Declaration

public static int sqrt(final double i) 

Method Source Code

//package com.java2s;
/*/*  w  w  w . j a  v  a 2  s .com*/
 * This file is part of WebLookAndFeel library.
 *
 * WebLookAndFeel library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * WebLookAndFeel library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with WebLookAndFeel library.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Returns rounded square root for the specified integer number.
     *
     * @param i integer number to process
     * @return rounded square root for the specified integer number
     */
    public static int sqrt(final double i) {
        return (int) Math.round(Math.sqrt(i));
    }
}

Related

  1. sqrt(double d)
  2. sqrt(double n)
  3. sqrt(double value)
  4. sqrt(double value)
  5. sqrt(double x, int precision)
  6. sqrt(final double x)
  7. sqrt(float a)
  8. sqrt(float a)
  9. sqrt(float f)