Exemple d’utilisation de la fonction ‘bcpow()’

Author:


Download

<html>
<head>
<title> Fonction Mathématique</title>
</head>
<body>

<?php
for ($x = 1; $x < 10; $x++)
{
  print("$x à la puissance $x = " . bcpow($x, $x) . "<BR>");
}

?>

</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *


8 − five =