.acos()
Anonymous contributor
Published Jun 18, 2021Updated Aug 24, 2022
Contribute to Docs
The Math.acos()
method returns the inverse cosine (or arccosine) of the argument in radians.
Syntax
Math.acos(n)
n
is a double
between 0 and 1.
Example
The following example uses Math.acos()
to return the inverse cosine of 0.0
and 1.0
:
class Main {public static void main(String[] args) {double arg1 = 0.0;double arg2 = 1.0;System.out.println(Math.acos(arg1));System.out.println(Math.acos(arg2));}}
This will produce the following output:
1.57079632679489660.0
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn Java on Codecademy
- Career path
Computer Science
Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!Includes 6 CoursesWith Professional CertificationBeginner Friendly75 hours - Free course
Learn Java
Learn to code in Java — a robust programming language used to create software, web and mobile apps, and more.Beginner Friendly16 hours