Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
double x = 5;
double y = 0.5;
// print e raised at x and y
System.out.println("Math.exp(" + x + ")=" + Math.exp(x));
System.out.println("Math.exp(" + y + ")=" + Math.exp(y));
}
}