App下载

demo_func_math_hypot 在线工具

demo_func_math_hypot 在线工具

<?php
echo hypot(3,4) . "<br>";
echo hypot(4,6) . "<br>";
echo hypot(1,3) . "<br>";
echo sqrt(3*3+4*4);
?>
运行结果