Easy Tutorial
❮ Exception Overloaded Method Java Hashmap Merge ❯

Java exp() Method

Java Number Class


The exp() method is used to return the natural number base e raised to the power of the argument.

Syntax

The method has the following syntax:

double exp(double d)

Parameters

-

d -- Any primitive data type.

Return Value

Returns the natural number base e raised 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));  
    }
}

Compiling the above program will output the following:

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

Java Number Class

❮ Exception Overloaded Method Java Hashmap Merge ❯