Find out E from math in Java
Description
The following code shows how to find out E from math.
Example
// w ww. j a v a2s . c om
public class Main {
public static void main(String[] argv) {
System.out.println("Java's e is " + Math.E);
}
}
The code above generates the following result.