Help for this page

Select Code to Download


  1. or download this
    C:\>perl -le "printf '%.0f', 2e25;"
    20000000000000001811939328
    C:\>perl -le "printf '%.0f', 20e24;"
    19999999999999997516972032
    
  2. or download this
    $ perl -le 'printf "%.0f\n", 2e25;'
    20000000000000001811939328
    $ perl -le "printf '%.0f', 20e24;"
    19999999999999997516972032