sqrt of a number in java code example

Example 1: square root of a number in java

Scanner in=new Scanner(System.in);
int num=in.nextInt();
System.out.println(Math.sqrt(num)); // the sqrt function gives a value in 'double' data type.

Example 2: finding square root geeks'

# THIS METHOD IS CALLED NEWTON-RAPHSON METHOD
n = 23049234
sq =1          # you can take it as any positive number
i = 0
for i in range(n):    
    temp = sq
    sq = (sq + n/sq)/2
    i += 1
    if temp  == sq:  # as the value starts repeating we have reached the final precison
        break
print(sq)

Tags:

Java Example