Open
Description
Input: Decimal.pow10(9996).pow10().recip()+''
Expect: 'e-e9996'
Output: 'ee-9996.000000000005'
This is VERY wrong.
ee-X means 10^(10^(-X)), which is not the reciprocal of 10^10^X, instead it is a number just a little bit bigger than 1.
e-eX (with big X) means 10^(-(10^X)), which is the reciprocal of 10^10^X.
Metadata
Metadata
Assignees
Labels
No labels