HTMLify

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

Comments