• Math 클래스가 제공하는 pow() 메소드를 이용하면 된다.

  • Math.pow(대상숫자, 지수) 메소드는 전부 double형이다. 
public class Test {
    public static void main(String[] args) {

        double result = Math.pow(2, 3);
        System.out.println(result);

    }
}

8.0

+ Recent posts