logo

Java Exp() Method


Show

Description

exp() returns Euler's number e raised to the power of a double value. If the argument is NaN, the result is NaN. If the argument is positive infinity, after that the result is constructive perpetuity. If the argument is downbeat infinity, then the product is positive zero. The process returns the base of the ordinary logarithms to the power of the argument. The scheme returns the support of the natural logarithms to the rule of the argument.

Syntax

double exp(double d)

Parameters

Here is the detail of parameters −

  • d − Any primitive data type.

Return Value

  • This method returns the base of the natural logarithms, e, to the power of the argument.

Example

public class Test { 

   public static void main(String args[]) {
      double x = 11.635;
      double y = 2.76;

      System.out.printf("The value of e is %.4f%n", Math.E);
      System.out.printf("exp(%.3f) is %.3f%n", x, Math.exp(x));  
   }
}

This will produce the following result −

Output

The value of e is 2.7183
exp(11.635) is 112983.831

Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.