calculate square root in java tutorial code example

Example 1: how to give square in java

import java.util.*;
public class Square {
    public static void main(String args[]){
        Scanner sc=new Scanner(System.in);
        int num;
     
        System.out.print("Enter an integer number: ");
        num=sc.nextInt();
     
        System.out.println("Square of "+ num + " is: "+ Math.pow(num, 2));
        
    }
}

Example 2: 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.

Tags:

Java Example