Help for this page

Select Code to Download


  1. or download this
    use Math::BigFloat;
    
    my $one_minus_one = Math::BigInt->new(1) - Math::BigFloat->new(.9999);
    print "$one_minus_one\n";
    
  2. or download this
    #!perl
    use bignum;
    ...
    
    printf("%3.20g\n", $e);
    print "$e ", 1-$e, "\n";