Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -w
    
    ...
    for $num( @ARGV ) {
            print "$num base 2 = ", $bin->from_base($num), " base 10\n";
    }
    
  2. or download this
    % ./b2d 1110010101011101111011110110101010111
    1110010101011101111011110110101010111 base 2 = 123140435287 base 10