logo

Metodo Java Math.pow()

IL java.lang.Math.pow() viene utilizzato per restituire il valore del primo argomento elevato alla potenza del secondo argomento. Il tipo restituito dal metodo pow() è double.

Sintassi

 public static double pow(double a, double b) 

Parametro

 a= base b= exponent 

Ritorno

Questo metodo restituisce il valore di aB

  • Se il secondo argomento è positivo o negativo Zero , questo metodo verrà restituito 1.0 .
  • Se il secondo argomento non è un numero (NaN) , questo metodo verrà restituito NaN .
  • Se il secondo argomento è 1 , questo metodo restituirà lo stesso risultato di primo argomento .

Esempio 1

 public class PowExample1 { public static void main(String[] args) { double x = 5; double y = 4; //returns 5 power of 4 i.e. 5*5*5*5 System.out.println(Math.pow(x, y)); } } 
Provalo adesso

Produzione:

 625.0 

Esempio 2

 public class PowExample2 { public static void main(String[] args) { double x = 9.0; double y = -3; //return (9) power of -3 System.out.println(Math.pow(x, y)); } } 
Provalo adesso

Produzione:

verilog sempre
 0.0013717421124828531 

Esempio 3

 public class PowExample3 { public static void main(String[] args) { double x = -765; double y = 0.7; //return NaN System.out.println(Math.pow(x, y)); } } 
Provalo adesso

Produzione:

 NaN 

Esempio 4

 public class PowExample4 { public static void main(String[] args) { double x = 27.2; double y = 1.0; // Second argument is 1 so output is 27.2 System.out.println(Math.pow(x, y)); } } 
Provalo adesso

Produzione:

 3.5461138422596736