close
例子
在本例中,我們將返回不同數的平方根:
<?php
echo(sqrt(0));
echo(sqrt(1));
echo(sqrt(9));
echo(sqrt(0.64));
echo(sqrt(-9));
?>
輸出:
0
1
3
0.8
-1.#IND
全站熱搜
例子
在本例中,我們將返回不同數的平方根:
<?php
echo(sqrt(0));
echo(sqrt(1));
echo(sqrt(9));
echo(sqrt(0.64));
echo(sqrt(-9));
?>
輸出:
0
1
3
0.8
-1.#IND
留言列表