Programming Examples
Java program to find Exponential value
Write a Java program to calculate the value of ex using the Math.exp() function.
Solution
import java.util.Scanner;
public class ExponentialFunction
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
System.out.print("Enter the exponent value (x): ");
double exponent = sc.nextDouble();
double expValue = Math.exp(exponent);
System.out.println("The value of e^" + exponent + " is " + expValue);
}
}
Output