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

12번째 줄: 12번째 줄:
         System.out.println( Math.pow(3, 2) ); // 9.0
         System.out.println( Math.pow(3, 2) ); // 9.0
         System.out.println( Math.pow(3, 4) ); // 81.0
         System.out.println( Math.pow(3, 4) ); // 81.0
    }
}
</source>
<source lang='java'>
public class MyClass {
    public static void main(String args[]) {
        int num = (int) Math.pow(2,3);
        System.out.println( num ); // 8
     }
     }
}
}

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

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