Skip to content

squareRoot(double n)

Ozan Onur TEK edited this page Mar 21, 2016 · 1 revision

squareRoot(double n)

Returns the square root of n

Usage:

Java Code:
public class Test {
        public static void main(String...args){
  System.out.println(EasyMath.squareRoot(25));
       }
          }
        //Console Output:
         5.0

Clone this wiki locally