suche nach in der

GMP Funktionen> <Vordefinierte Konstanten
Last updated: Sat, 07 Jan 2012

view this page in

Beispiele

Beispiel #1 Fakultätsfunktion unter Verwendung von GMP

<?php
function fact($x)
{
    
$return 1;
    for (
$i=2$i $x$i++) {
        
$return gmp_mul($return$i);
    }
    return 
$return;
}

echo 
gmp_strval(fact(1000)) . "\n";
?>

Dies berechnet die Fakultät von 1000 sehr schnell (eine wirklich große Zahl).



add a note add a note User Contributed Notes
Beispiele
There are no user contributed notes for this page.

GMP Funktionen> <Vordefinierte Konstanten
Last updated: Sat, 07 Jan 2012