App下载

demo_func_math_sqrt 在线工具

demo_func_math_sqrt 在线工具

<?php
echo(sqrt(0) . "<br>");
echo(sqrt(1) . "<br>");
echo(sqrt(9) . "<br>");
echo(sqrt(0.64) . "<br>");
echo(sqrt(-9));
?>
运行结果