public static double hypot (double x, double y)

Returns sqrt(x2 +y2) without intermediate overflow or underflow.

Special cases:

The computed result must be within 1 ulp of the exact result. If one parameter is held constant, the results must be semi-monotonic in the other parameter.

Parameters:
x    a value
y    a value

Returns:  sqrt(x2 +y2) without intermediate overflow or underflow

Since:  1.5