import java.lang.Math.*; class Demoacosh { double acosh(double x) { return Math.log(x + Math.sqrt(x*x - 1.0)); } public static void main(String args[]) { Demoacosh d= new Demoacosh(); double x= 2.0; double res= d.acosh(x); System.out.println(res); } }
Output: |
---|
1.3169578969248166 |