I try to get
Math.pow(2,1000);
The result is " 1.2676506002282294e+30 "
I need the number without Euler's number "e+30"
That's scientific notation, not Euler's number.
If you want to show the number without the e+NN
part:
e+NN
partbe aware that doing so will lead to inaccurate values for some calculations due to how floating point arithmetic works.