Wil je een 3e machtswortel (of hoger), gebruik dan de volgende functie:
<?php
function sqrt2($a, $g) {
return pow($a, 1/$g);
}
//voorbeeld:
echo sqrt2(27,3); //output: 3, 3e machtswortel uit 27 is 3
echo sqrt2(16,4); //output: 2, 4e machtswortel uit 16 is 2
?>
<?php function sqrt2($a, $g) { } //voorbeeld: echo sqrt2 (27,3); //output: 3, 3e machtswortel uit 27 is 3 echo sqrt2 (16,4); //output: 2, 4e machtswortel uit 16 is 2 ?>
|