HTMLify

Q69_Sqrt.php
Views: 168 | Author: djdj
function mySqrt($x) {
        return intval(sqrt($x));
    }

Comments