logo

Java Math.pow()-Methode

Der java.lang.Math.pow() wird verwendet, um den Wert des ersten Arguments potenziert mit dem zweiten Argument zurückzugeben. Der Rückgabetyp der pow()-Methode ist double.

Syntax

 public static double pow(double a, double b) 

Parameter

 a= base b= exponent 

Zurückkehren

Diese Methode gibt den Wert von a zurückB

  • Ob das zweite Argument positiv oder negativ ist Null , diese Methode wird zurückgegeben 1,0 .
  • Wenn das zweite Argument keine Zahl ist (NaN) , diese Methode wird zurückgegeben NaN .
  • Wenn das zweite Argument ist 1 , diese Methode gibt das gleiche Ergebnis zurück wie die erstes Argument .

Beispiel 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)); } } 
Testen Sie es jetzt

Ausgabe:

 625.0 

Beispiel 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)); } } 
Testen Sie es jetzt

Ausgabe:

string jsonobject
 0.0013717421124828531 

Beispiel 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)); } } 
Testen Sie es jetzt

Ausgabe:

 NaN 

Beispiel 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)); } } 
Testen Sie es jetzt

Ausgabe:

 3.5461138422596736