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 187 views
187 views asked May 7, 2019 by avibootz
1 answer 208 views
1 answer 171 views
171 views asked Feb 29, 2020 by avibootz
1 answer 183 views
1 answer 157 views
157 views asked May 7, 2019 by avibootz
1 answer 174 views
174 views asked May 7, 2019 by avibootz
...