Say,
base = 2 and e = 20000.5671
How to perform (base power e) for above example in java.
Clearly Math.pow(base, e) is not the way to go as it print's "Infinity"
and BigDecimal accepts 'e' of type int only.
Any other way to achieve this? Expecting more of a JDK library rather than 3p.