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

(새 문서: ==개요== ;Java pow() ;자바 pow() ;Math.pow() <source lang='Java'> public class MyClass { public static void main(String args[]) { System.out.println( Math.pow(2, -3)...)
 
21번째 줄: 21번째 줄:
==참고==
==참고==
* https://www.tutorialspoint.com/java/number_pow.htm
* https://www.tutorialspoint.com/java/number_pow.htm
* https://www.geeksforgeeks.org/java-pow-method-example/


[[분류: Java]]
[[분류: Java]]

2018년 8월 12일 (일) 22:54 판

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 }}