square root java code example
Example 1: java square a number
int i = 2;
int square = Math.pow(i, 2);
int i = 2;
int cube = Math.pow(i, 3);
int i = 2;
int nthPower = Math.pow(i, 4);
Example 2: math sqrt java
import java.lang.Math;
double x = Math.sqrt(9);
Example 3: 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 4: square root of a number in java
Scanner in=new Scanner(System.in);
int num=in.nextInt();
System.out.println(Math.sqrt(num));
Example 5: square root of a number in java without sqrt
Scanner in=new Scanner(System.in);
int num=in.nextInt();
Systen.out.println(Math.pow(num,0.5));