Math.pow
Math.pow 함수는 자바에서 제곱근을 구할때 사용하는 함수이다.
Math.pow(double,double) : Math.pow 함수는 입출력이 모두 실수형인 double이다
첫번째 인자가 밑이고 두번째 인자가 지수이다.
public class Test {
public static void main(String[] args) {
int num=2;
for (int i=1; i<=4; i++) {
System.out.println(String.format("Math.pow(%d,%d) = %f",num,i,Math.pow(num,i)));
}
}
}
Math.pow(2,1) = 2.000000
Math.pow(2,2) = 4.000000
Math.pow(2,3) = 8.000000
Math.pow(2,4) = 16.000000