How to find square root of a number using Math.sqrt() method in Java

1 Answer

0 votes
package javaapplication1;

public class JavaApplication1 {

    public static void main(String[] args) {

        System.out.println(Math.sqrt(9));
        System.out.println(Math.sqrt(-9));
        System.out.println(Math.sqrt(81));
        System.out.println(Math.sqrt(25));
        System.out.println(Math.sqrt(9.9));
    }
}
   
/*
      
run:

3.0
NaN
9.0
5.0
3.146426544510455
  
*/

 



answered Nov 9, 2016 by avibootz

Related questions

1 answer 200 views
200 views asked May 7, 2019 by avibootz
1 answer 219 views
1 answer 182 views
182 views asked Feb 29, 2020 by avibootz
1 answer 192 views
1 answer 165 views
165 views asked May 7, 2019 by avibootz
1 answer 185 views
185 views asked May 7, 2019 by avibootz
...