Return hypotenuse of triangle.
Source position: math.pp line 585
function Hypot( |
x: Float; |
y: Float |
):Float; |
Hypot returns the hypotenuse of the triangle where the sides adjacent to the square angle have lengths x and y. The function uses Pythagoras' rule for this.
None.
Program Example17; { Program to demonstrate the hypot function. } Uses math; begin Writeln(hypot(3,4)); // should be 5 end.