Returns the closest double approximation of the result of raising x to the power of y. Special cases: pow((anything), +0.0) = 1.0 pow((anything), -0.0) = 1.0 pow(x, 1.0) = x pow((anything), NaN) = NaN {@
(double x, double y)
| 694 | * @return {@code x} to the power of {@code y}. |
| 695 | */ |
| 696 | public static native double pow(double x, double y); |
| 697 | |
| 698 | /** |
| 699 | * Returns a pseudo-random number between 0.0 (inclusive) and 1.0 |