"자바 pow()"의 두 판 사이의 차이

17번째 줄: 17번째 줄:


==같이 보기==
==같이 보기==
* [[자바 double to int]]
* [[함수 pow()]]
* [[함수 pow()]]



2018년 8월 15일 (수) 01:21 판

1 개요

Java pow()
자바 pow()
Math.pow()
public class MyClass {
    public static void main(String args[]) {
        System.out.println( Math.pow(2, -3) ); // 0.125
        System.out.println( Math.pow(3, 0) ); // 1.0
        System.out.println( Math.pow(3, 1) ); // 3.0
        System.out.println( Math.pow(3, 2) ); // 9.0
        System.out.println( Math.pow(3, 4) ); // 81.0
    }
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}