logo

Java Math.exp() metode

The java.lang.Math.exp() tiek izmantots, lai atgrieztu Eilera skaitli e, kas palielināts dubultās vērtības pakāpē. Šeit e ir Eilera skaitlis, un tas ir aptuveni vienāds ar 2,718281828459045.

Sintakse

 public static double exp(double x) 

Parametrs

 x = It is the exponent which raise to e 

Atgriezties

Tas atgriež vērtību ex, kur e ir naturālo logaritmu bāze.
  • Ja arguments ir pozitīvs vai negatīvs dubultā vērtība, šī metode atgriezīs izvadi.
  • Ja arguments ir Nulle , šī metode atgriezīsies 1.0 .
  • Ja arguments ir Pozitīvā bezgalība , šī metode atgriezīsies Pozitīvā bezgalība .
  • Ja arguments ir Negatīvā bezgalība , šī metode atgriezīsies Pozitīva nulle .
  • Ja arguments ir NaN , šī metode atgriezīsies NaN .

1. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 7.38905609893065 

2. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 9.118819655545162E-4 

3. piemērs

 public class ExpExample3 { public static void main(String[] args) { double a = 0.0; // Input Zero, Output 1.0 System.out.println(Math.exp(a)); } } 
Izmēģiniet to tūlīt

Izvade:

 1.0 

4. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 Infinity 

5. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 0.0 

6. piemērs

 public class ExpExample6 { public static void main(String[] args) { double a = 0.0 / 0; // Input NaN, Output NaN System.out.println(Math.exp(a)); } } 
Izmēģiniet to tūlīt

Izvade:

 NaN