Answers for "square root"

PHP
0

square root

<?php
// Precision depends on your precision directive
echo sqrt(9); // 3
echo sqrt(10); // 3.16227766 ...
?>
Posted by: Guest on February-16-2022

Browse Popular Code Answers by Language