Programming Code Center(PCC)
[JAVA]

(PCC)::[How-to-write-Java-Program-to-Calculate-the-Power-of-a-Number]::[java]

File Name : Power.java

//Example : Calculate power of a number using a while loop
public class Power {

    public static void main(String[] args) {

        int base = 3, exponent = 4;

        long result = 1;

        while (exponent != 0)
        {
            result *= base;
            --exponent;
        }

        System.out.println("Answer = " + result);
    }
}

Output :

Power.jpg