Name: inC81039 Date: 06/04/99
According to "Java Language Specification" for Math.pow()
"If first argument is positive zero
and the second argument is less than zero
then the result is positive infinity."
However, actual result is different:
Math.pow(0, -1) = -Infinity
======================================================================