strictE.java Source code

Java tutorial

Introduction

Here is the source code for strictE.java

Source

public class strictE {
    public static void main(String[] args) {
        // Calculate E^2
        double e2 = StrictMath.E * StrictMath.E;

        System.out.println(e2);
    }
}