1 2 3 4 5 6 7 8 9
sub log2 { my $n = shift; return log($n)/log(2); } use bigint; puts log2 2**256; # infinity no bigint; puts log2 2**256; # 256
2019-10-21T17:50:43 Daximlog(2) == 0
QuoteIch habe einen Sack Kartoffel, wa kann ich damit machen?
QuoteIch will ne Erbsensuppe kochen, was brauche ich?
2019-10-21T17:59:17 murphySowohl perl -Mbigint -E'say log 2' als auch perl -Mbigint -E'say log 2**256' liefern als Ergebnis NaN.