Help for this page

Select Code to Download


  1. or download this
      DB<25> p 27**(2/3)
    9
    ...
      DB<27> printf "%.15f", 27**(2/3)
    8.999999999999998
      DB<28>
    
  2. or download this
    >>> 27**(2/3)
    8.999999999999998
    >>> 27**(2/3)==9
    False
    >>>