(Java) Math.pow 제곱함수

강민범·2023년 1월 18일
0

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
profile
개발자 성장일기

0개의 댓글