square in java functin code example
Example: java square a number
//To square:
int i = 2;
int square = Math.pow(i, 2);
//To cube:
int i = 2;
int cube = Math.pow(i, 3);
//To nth power:
int i = 2;
int nthPower = Math.pow(i, 4);
//To square:
int i = 2;
int square = Math.pow(i, 2);
//To cube:
int i = 2;
int cube = Math.pow(i, 3);
//To nth power:
int i = 2;
int nthPower = Math.pow(i, 4);