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

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
4번째 줄: 4번째 줄:
;Math.pow()
;Math.pow()


<source lang='Java'>
<syntaxhighlight lang='Java'>
public class MyClass {
public class MyClass {
     public static void main(String args[]) {
     public static void main(String args[]) {
14번째 줄: 14번째 줄:
     }
     }
}
}
</source>
</syntaxhighlight>
<source lang='java'>
<syntaxhighlight lang='java'>
public class MyClass {
public class MyClass {
     public static void main(String args[]) {
     public static void main(String args[]) {
22번째 줄: 22번째 줄:
     }
     }
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:49 기준 최신판

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
    }
}
public class MyClass {
    public static void main(String args[]) {
        int num = (int) Math.pow(2,3);
        System.out.println( num ); // 8
    }
}

2 같이 보기[ | ]

3 참고[ | ]

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