Java sqr sqrt(float f)

Here you can find the source of sqrt(float f)

Description

sqrt

License

LGPL

Declaration

public static float sqrt(float f) 

Method Source Code

//package com.java2s;
//License from project: LGPL 

public class Main {
    public static float sqrt(float f) {
        return (float) Math.sqrt(f);
    }//  w  w w. j ava2s .  co m

    public static float sqrt(double d) {
        return (float) Math.sqrt(d);
    }
}

Related

  1. sqrt(double x, int precision)
  2. sqrt(final double i)
  3. sqrt(final double x)
  4. sqrt(float a)
  5. sqrt(float a)
  6. sqrt(int n)
  7. sqrt(int val)
  8. sqrt(long val)
  9. sqrt(long x)