Java

How to do exponents in Java

You can use 4 methods to calculate exponent in Java: Math.pow(), BigInteger.pow(), for-loop and while-loop.