Online Java Compiler By
JavaTpoint.com
public class HypotExample2 { public static void main(String[] args) { double x = -4; double y = 3; // Return the value of sqrt((-4)
2
+ (3)
2
) System.out.println(Math.hypot(x, y)); } }
Output