logo

Java Math.exp()-Methode

Der java.lang.Math.exp() wird verwendet, um die Eulersche Zahl e, potenziert mit einem doppelten Wert, zurückzugeben. Hier ist e eine Euler-Zahl und entspricht ungefähr 2,718281828459045.

Syntax

 public static double exp(double x) 

Parameter

 x = It is the exponent which raise to e 

Zurückkehren

Es gibt den Wert e zurückX, wobei e die Basis des natürlichen Logarithmus ist.
  • Wenn das Argument ein positiver oder negativer Doppelwert ist, gibt diese Methode die Ausgabe zurück.
  • Wenn das Argument ist Null , diese Methode wird zurückgegeben 1,0 .
  • Wenn das Argument ist Positive Unendlichkeit , diese Methode wird zurückgegeben Positive Unendlichkeit .
  • Wenn das Argument ist Negative Unendlichkeit , diese Methode wird zurückgegeben Positive Null .
  • Wenn das Argument ist NaN , diese Methode wird zurückgegeben NaN .

Beispiel 1

 public class ExpExample1 { public static void main(String[] args) { double a = 2.0; // return (2.718281828459045) power of 2 System.out.println(Math.exp(a)); } } 
Testen Sie es jetzt

Ausgabe:

 7.38905609893065 

Beispiel 2

 public class ExpExample2 { public static void main(String[] args) { double a = -7.0; // return (2.718281828459045) power of -7 System.out.println(Math.exp(a)); } } 
Testen Sie es jetzt

Ausgabe:

 9.118819655545162E-4 

Beispiel 3

 public class ExpExample3 { public static void main(String[] args) { double a = 0.0; // Input Zero, Output 1.0 System.out.println(Math.exp(a)); } } 
Testen Sie es jetzt

Ausgabe:

 1.0 

Beispiel 4

 public class ExpExample4 { public static void main(String[] args) { double a = 1.0 / 0; // Input positive Infinity, Output positive Infinity System.out.println(Math.exp(a)); } } 
Testen Sie es jetzt

Ausgabe:

 Infinity 

Beispiel 5

 public class ExpExample5 { public static void main(String[] args) { double a = -1.0 / 0; // Input negative Infinity, Output Zero System.out.println(Math.exp(a)); } } 
Testen Sie es jetzt

Ausgabe:

 0.0 

Beispiel 6

 public class ExpExample6 { public static void main(String[] args) { double a = 0.0 / 0; // Input NaN, Output NaN System.out.println(Math.exp(a)); } } 
Testen Sie es jetzt

Ausgabe:

 NaN