<?Php
echo hypot(4,3); // Output is 5
echo "<br>";
echo hypot(2,3); // Output 3.605551275464
echo "<br>";
echo hypot(4,5); // Output 6.4031242374328
echo "<br>";
echo hypot(8,10); // Output is 12.806248474866
echo "<br>";
echo hypot(12,13); // Output is 17.691806012954
?>
Syntax
float hypot ( float $x , float $y )
Parameter | DESCRIPTION |
---|---|
$x | Required : Length of first side. |
$x | Required : Length of second side. |
echo round(hypot(9,10),2); // Output is 13.45