Exemple d’utilisation de la fonction ‘bcpow()’ October 27, 2012 Author: user {filelink=13303} <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> Categories: Uncategorized