Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: decimal to binary convertion

by I0 (Priest)
on May 19, 2002 at 00:58 UTC ( [id://167585]=note: print w/replies, xml ) Need Help??


in reply to decimal to binary convertion

sub dectobin { use Math::BigInt; my $x = Math::BigInt->new(shift); join '', unpack 'B32B32', pack'NN',$x>>32,$x&0xffffffff; } print dectobin "12297829382473034410";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://167585]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-20 04:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found