Java tutorial
public class Main { public static void main(String[] args) { double x = 45; double y = -180; // convert them to radians x = Math.toRadians(x); y = Math.toRadians(y); // print the hyperbolic sine for these doubles System.out.println("sinh(" + x + ")=" + Math.sinh(x)); System.out.println("sinh(" + y + ")=" + Math.sinh(y)); } }