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 d1 = (90 * Math.PI) / 180, d2 = 50, d3 = 0;

        System.out.println("Hyperbolic sine of d1 = " + StrictMath.sinh(d1));

        System.out.println("Hyperbolic sine of d2 = " + StrictMath.sinh(d2));

        System.out.println("Hyperbolic sine of d3 = " + StrictMath.sinh(d3));
    }
}