Main.java Source code

Java tutorial

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;

        // call expm1 for both numbers and print the result
        System.out.println("Math.expm1(" + x + ")=" + Math.expm1(x));
        System.out.println("Math.expm1(" + y + ")=" + Math.expm1(y));

    }
}