Name: inC81039 Date: 06/04/99
According to "Java Language Specification" for Math.acos()
"If argument is NaN or its absolute value is greater than 1,
then the result is NaN."
However, actual results are different:
Math.acos(-10) = 0
Math.acos( 10) = 0
======================================================================